Skip to content

Commit b76a956

Browse files
committed
docs: section improvments
1 parent 36d54e3 commit b76a956

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

docs/man_pages/project/testing/build-android.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ General | `$ tns build android [--compileSdk <API Level>] [--key-store-path <Fil
2727
* `--copy-to` - Specifies the file path where the built `.apk` will be copied. If it points to a non-existent directory path, it will be created. If the specified value is existing directory, the original file name will be used.
2828
* `--bundle` - Specifies that the `webpack` bundler will be used to bundle the application.
2929
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
30-
* `--env.aot` - creates Ahead-Of-Time build (Angular only)
31-
* `--env.snapshot`- creates Snapshot (only on Mac OS & only for Android)
32-
* `--env.uglify` - obfuscates the code with Uglify.js
33-
* `--env.report` - creates a report inside a `report` folder in the root folde
30+
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
31+
* `--env.snapshot`- creates [Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) (only for release builds on Mac OS & for Android).
32+
* `--env.uglify` - provides basic obfuscation and smaller app size.
33+
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
3434
* `--env.sourceMap` - creates inline source maps (useful for debbuging bundled app).
35-
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release)
35+
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release).
3636
* `--aab` - Specifies that the build will produce an Android App Bundle(`.aab`) file.
3737

3838
<% if(isHtml) { %>

docs/man_pages/project/testing/build-ios.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ General | `$ tns build ios [--for-device] [--release] [--copy-to <File Path>] [-
2828
* `--provision` - If used without parameter, lists all eligible provisioning profiles. If used with UUID or name of your provisioning profile, it will switch to manual signing mode and configure the .xcodeproj file of your app. In this case xcconfig should not contain any provisioning/team id flags. This provisioning profile will be further used for codesigning the app.
2929
* `--bundle` - Specifies that the `webpack` bundler will be used to bundle the application.
3030
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
31-
* `--env.aot` - creates Ahead-Of-Time build (Angular only)
32-
* `--env.snapshot`- creates Snapshot (only on Mac OS & only for Android)
33-
* `--env.uglify` - obfuscates the code with Uglify.js
34-
* `--env.report` - creates a report inside a `report` folder in the root folde
31+
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
32+
* `--env.snapshot`- creates [Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) (only for release builds on Mac OS & for Android).
33+
* `--env.uglify` - provides basic obfuscation and smaller app size.
34+
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
3535
* `--env.sourceMap` - creates inline source maps (useful for debbuging bundled app).
36-
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release)
36+
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release).
3737

3838
<% } %>
3939

docs/man_pages/project/testing/build.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ Usage | Synopsis
3030
* `--bundle` - Specifies that the `webpack` bundler will be used to bundle the application.
3131
* `--hmr` - (Beta) Enables the hot module replacement (HMR) feature. HMR depends on `webpack` and adding the `--hmr` flag to the command will automatically enable the `--bundle` option as well. <% if(isConsole) { %> The HMR feature is currently in Beta. For more information about the current development state and any known issues, please check the relevant GitHub issue: https://github.com/NativeScript/NativeScript/issues/6398.<% } %>
3232
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
33-
* `--env.aot` - creates Ahead-Of-Time build (Angular only)
34-
* `--env.snapshot`- creates Snapshot (only on Mac OS & only for Android)
35-
* `--env.uglify` - obfuscates the code with Uglify.js
36-
* `--env.report` - creates a report inside a `report` folder in the root folde
33+
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
34+
* `--env.snapshot`- creates [Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) (only for release builds on Mac OS & for Android).
35+
* `--env.uglify` - provides basic obfuscation and smaller app size.
36+
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
3737
* `--env.sourceMap` - creates inline source maps (useful for debbuging bundled app).
38-
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release)
38+
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release).
3939
* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary!
4040

4141

docs/man_pages/project/testing/run-android.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ Start a default emulator if none are running, or run application on all connecte
3434
* `--bundle` - Specifies that the `webpack` bundler will be used to bundle the application.
3535
* `--hmr` - (Beta) Enables the hot module replacement (HMR) feature. HMR depends on `webpack` and adding the `--hmr` flag to the command will automatically enable the `--bundle` option as well. <% if(isConsole) { %> The HMR feature is currently in Beta. For more information about the current development state and any known issues, please check the relevant GitHub issue: https://github.com/NativeScript/NativeScript/issues/6398.<% } %>
3636
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times.
37-
* `--env.aot` - creates Ahead-Of-Time build (Angular only)
38-
* `--env.snapshot`- creates Snapshot (only on Mac OS & only for Android)
39-
* `--env.uglify` - obfuscates the code with Uglify.js
40-
* `--env.report` - creates a report inside a `report` folder in the root folde
37+
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
38+
* `--env.snapshot`- creates [Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) (only for release builds on Mac OS & for Android).
39+
* `--env.uglify` - provides basic obfuscation and smaller app size.
40+
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
4141
* `--env.sourceMap` - creates inline source maps (useful for debbuging bundled app).
42-
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release)
42+
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release).
4343
* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary!
4444

4545
<% if(isHtml) { %>

docs/man_pages/project/testing/run-ios.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ Start an emulator with specified device identifier and sdk | `$ tns run ios [--d
3737
* `--bundle` - Specifies that the `webpack` bundler will be used to bundle the application.
3838
* `--hmr` - (Beta) Enables the hot module replacement (HMR) feature. HMR depends on `webpack` and adding the `--hmr` flag to the command will automatically enable the `--bundle` option as well. <% if(isConsole) { %> The HMR feature is currently in Beta. For more information about the current development state and any known issues, please check the relevant GitHub issue: https://github.com/NativeScript/NativeScript/issues/6398.<% } %>
3939
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times.
40-
* `--env.aot` - creates Ahead-Of-Time build (Angular only)
41-
* `--env.snapshot`- creates Snapshot (only on Mac OS & only for Android)
42-
* `--env.uglify` - obfuscates the code with Uglify.js
43-
* `--env.report` - creates a report inside a `report` folder in the root folde
40+
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
41+
* `--env.snapshot`- creates [Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) (only for release builds on Mac OS & for Android).
42+
* `--env.uglify` - provides basic obfuscation and smaller app size.
43+
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
4444
* `--env.sourceMap` - creates inline source maps (useful for debbuging bundled app).
45-
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release)
45+
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release).
4646
* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary!
4747

4848
<% } %>

docs/man_pages/project/testing/run.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ Run on a selected connected device or running emulator. Will start emulator with
2525
* `--bundle` - Specifies that the `webpack` bundler will be used to bundle the application.
2626
* `--hmr` - (Beta) Enables the hot module replacement (HMR) feature. HMR depends on `webpack` and adding the `--hmr` flag to the command will automatically enable the `--bundle` option as well. <% if(isConsole) { %> The HMR feature is currently in Beta. For more information about the current development state and any known issues, please check the relevant GitHub issue: https://github.com/NativeScript/NativeScript/issues/6398.<% } %>
2727
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
28-
* `--env.aot` - creates Ahead-Of-Time build (Angular only)
29-
* `--env.snapshot`- creates Snapshot (only on Mac OS & only for Android)
30-
* `--env.uglify` - obfuscates the code with Uglify.js
31-
* `--env.report` - creates a report inside a `report` folder in the root folde
28+
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
29+
* `--env.snapshot`- creates [Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) (only for release builds on Mac OS & for Android).
30+
* `--env.uglify` - provides basic obfuscation and smaller app size.
31+
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
3232
* `--env.sourceMap` - creates inline source maps (useful for debbuging bundled app).
33-
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release)
33+
* `--env.hiddenSourceMap` - creates sources maps in the root folder (useful for Crashlytics usage with bundled app in release).
3434
* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary!
3535

3636

0 commit comments

Comments
 (0)