Skip to content

Commit 8af706c

Browse files
committed
docs: fix PR comments
1 parent 38402df commit 8af706c

File tree

9 files changed

+15
-18
lines changed

9 files changed

+15
-18
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ General | `$ tns build android [--compileSdk <API Level>] [--key-store-path <Fil
2525
* `--key-store-alias` - Provides the alias for the keystore file specified with `--key-store-path`. You can use the `--key-store-*` options along with `--release` to produce a signed release build. You need to specify all `--key-store-*` options.
2626
* `--key-store-alias-password` - Provides the password for the alias specified with `--key-store-alias-password`. You can use the `--key-store-*` options along with `--release` to produce a signed release build. You need to specify all `--key-store-*` options.
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.
28-
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
28+
* `--env.*` - Specifies additional flags that the bundler may process. Can be passed multiple times. Supported additional flags:
2929
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
3030
* `--env.snapshot`- creates [a V8 Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) decreasing the app start time (only for release builds for Android).
31-
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. In this way, the app size will be reduced when using the `--aab` option.
31+
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. This will reduce the app size when using the `--aab` option.
3232
* `--env.uglify` - provides basic obfuscation and smaller app size.
3333
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
3434
* `--env.sourceMap` - creates inline source maps.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ General | `$ tns build ios [--for-device] [--release] [--copy-to <File Path>] [-
2727
* `--copy-to` - Specifies the file path where the built `.ipa` 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
* `--team-id` - If used without parameter, lists all team names and ids. If used with team name or id, it will switch to automatic signing mode and configure the .xcodeproj file of your app. In this case .xcconfig should not contain any provisioning/team id flags. This team id will be further used for codesigning the app. For Xcode 9.0+, xcodebuild will be allowed to update and modify automatically managed provisioning profiles.
2929
* `--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.
30-
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
30+
* `--env.*` - Specifies additional flags that the bundler may process. Can be passed multiple times. Supported additional flags:
3131
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
3232
* `--env.uglify` - provides basic obfuscation and smaller app size.
3333
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.

docs/man_pages/project/testing/build.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ Usage | Synopsis
3232
* `--release` -If set, produces a release build by running webpack in production mode and native build in release mode. Otherwise, produces a debug build.
3333
* `--device` - Specifies a connected device/emulator to start and run the app. `<Device ID>` is the index or `Device Identifier` of the target device as listed by the `$ tns device <Platform> --available-devices` command.
3434
* `--hmr` - Enables the hot module replacement (HMR) feature.
35-
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
35+
* `--env.*` - Specifies additional flags that the bundler may process. Can be passed multiple times. Supported additional flags:
3636
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
3737
* `--env.snapshot`- creates [a V8 Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) decreasing the app start time (only for release builds for Android).
38-
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. In this way, the app size will be reduced when using the `--aab` option.
38+
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. This will reduce the app size when using the `--aab` option.
3939
* `--env.uglify` - provides basic obfuscation and smaller app size.
4040
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
4141
* `--env.sourceMap` - creates inline source maps.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ Attach the debug tools to a running app in the native emulator | `$ tns debug an
2929
* `--no-watch` - If set, changes in your code will not be reflected during the execution of this command.
3030
* `--clean` - If set, forces the complete rebuild of the native application.
3131
* `--no-hmr` - Disables Hot Module Replacement (HMR). In this case, when a change in the code is applied, CLI will transfer the modified files and restart the application.
32-
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
32+
* `--env.*` - Specifies additional flags that the bundler may process. Can be passed multiple times. Supported additional flags:
3333
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
3434
* `--env.snapshot`- creates [a V8 Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) decreasing the app start time (only for release builds for Android).
35-
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. In this way, the app size will be reduced when using the `--aab` option.
35+
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. This will reduce the app size when using the `--aab` option.
3636
* `--env.uglify` - provides basic obfuscation and smaller app size.
3737
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
3838
* `--env.sourceMap` - creates inline source maps.

docs/man_pages/project/testing/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ Deploy on Android | `$ tns deploy android [--device <Device ID>] [--key-store-pa
3333
* `--key-store-password` - Provides the password for the keystore file specified with `--key-store-path`. You can use the `--key-store-*` options along with `--release` to produce a signed release build. You need to specify all `--key-store-*` options.
3434
* `--key-store-alias` - Provides the alias for the keystore file specified with `--key-store-path`. You can use the `--key-store-*` options along with `--release` to produce a signed release build. You need to specify all `--key-store-*` options.
3535
* `--key-store-alias-password` - Provides the password for the alias specified with `--key-store-alias-password`. You can use the `--key-store-*` options along with `--release` to produce a signed release build. You need to specify all `--key-store-*` options.
36-
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
36+
* `--env.*` - Specifies additional flags that the bundler may process. Can be passed multiple times. Supported additional flags:
3737
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
3838
* `--env.snapshot`- creates [a V8 Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) decreasing the app start time (only for release builds for Android).
39-
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. In this way, the app size will be reduced when using the `--aab` option.
39+
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. This will reduce the app size when using the `--aab` option.
4040
* `--env.uglify` - provides basic obfuscation and smaller app size.
4141
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
4242
* `--env.sourceMap` - creates inline source maps.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ Start a default emulator if none are running, or run application on all connecte
3434
* `--key-store-alias` - Provides the alias for the keystore file specified with `--key-store-path`. You can use the `--key-store-*` options along with `--release` to produce a signed release build. You need to specify all `--key-store-*` options.
3535
* `--key-store-alias-password` - Provides the password for the alias specified with `--key-store-alias-password`. You can use the `--key-store-*` options along with `--release` to produce a signed release build. You need to specify all `--key-store-*` options.
3636
* `--no-hmr` - Disables Hot Module Replacement (HMR). In this case, when a change in the code is applied, CLI will transfer the modified files and restart the application.
37-
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times.
37+
* `--env.*` - Specifies additional flags that the bundler may process. Can be passed multiple times.
3838
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
3939
* `--env.snapshot`- creates [a V8 Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) decreasing the app start time (only for release builds for Android).
40-
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. In this way, the app size will be reduced when using the `--aab` option.
40+
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. This will reduce the app size when using the `--aab` option.
4141
* `--env.uglify` - provides basic obfuscation and smaller app size.
4242
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
4343
* `--env.sourceMap` - creates inline source maps.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Start an emulator with specified device identifier and sdk | `$ tns run ios [--d
3737
* `--no-watch` - If set, changes in your code will not be reflected during the execution of this command.
3838
* `--release` - If set, produces a release build by running webpack in production mode and native build in release mode. Otherwise, produces a debug build.
3939
* `--no-hmr` - Disables Hot Module Replacement (HMR). In this case, when a change in the code is applied, CLI will transfer the modified files and restart the application.
40-
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times.
40+
* `--env.*` - Specifies additional flags that the bundler may process. Can be passed multiple times.
4141
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
4242
* `--env.uglify` - provides basic obfuscation and smaller app size.
4343
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.

docs/man_pages/project/testing/run.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ Run on a selected connected device or running emulator. Will start emulator with
4545
* `--release` - If set, produces a release build by running webpack in production mode and native build in release mode. Otherwise, produces a debug build.
4646
* `--device` - Specifies a connected device/emulator to start and run the app. `<Device ID>` is the index or `Device Identifier` of the target device as listed by the `$ tns device <Platform> --available-devices` command.
4747
* `--no-hmr` - Disables Hot Module Replacement (HMR). In this case, when a change in the code is applied, CLI will transfer the modified files and restart the application.
48-
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
48+
* `--env.*` - Specifies additional flags that the bundler may process. Can be passed multiple times. Supported additional flags:
4949
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
5050
* `--env.snapshot`- creates [a V8 Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) decreasing the app start time (only for release builds for Android).
51-
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. In this way, the app size will be reduced when using the `--aab` option.
51+
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. This will reduce the app size when using the `--aab` option.
5252
* `--env.uglify` - provides basic obfuscation and smaller app size.
5353
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
5454
* `--env.sourceMap` - creates inline source maps.

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

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,7 @@ Run tests on a selected device | `$ tns test android --device <Device ID> [--wat
2121
* `--watch` - If set, when you save changes to the project, changes are automatically synchronized to the connected device and tests are re-run.
2222
* `--device` - Specifies the serial number or the index of the connected device on which to run the tests. To list all connected devices, grouped by platform, run `$ tns device`. `<Device ID>` is the device index or identifier as listed by the `$ tns device` command.
2323
* `--debug-brk` - Runs the tests under the debugger. The debugger will break just before your tests are executed, so you have a chance to place breakpoints.
24-
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. Supported additional flags:
25-
* `--env.aot` - creates Ahead-Of-Time build (Angular only).
26-
* `--env.snapshot`- creates [a V8 Snapshot](https://docs.nativescript.org/performance-optimizations/bundling-with-webpack#v8-heap-snapshot) decreasing the app start time (only for release builds for Android).
27-
* `--env.compileSnapshot`- compiles the static assets produced by `--env.snapshot` into `.so` files allowing the native build to split them per architecture. In this way, the app size will be reduced when using the `--aab` option.
24+
* `--env.*` - Specifies additional flags that the bundler may process. Can be passed multiple times. Supported additional flags:
2825
* `--env.uglify` - provides basic obfuscation and smaller app size.
2926
* `--env.report` - creates a Webpack report inside a `report` folder in the root folder.
3027
* `--env.sourceMap` - creates inline source maps.

0 commit comments

Comments
 (0)