diff --git a/docs/man_pages/project/testing/debug-android.md b/docs/man_pages/project/testing/debug-android.md index e2fe493dfd..1b21340c8b 100644 --- a/docs/man_pages/project/testing/debug-android.md +++ b/docs/man_pages/project/testing/debug-android.md @@ -24,6 +24,7 @@ While debugging, prints the output from the application in the console and watch * `--timeout` - Sets the number of seconds that the NativeScript CLI will wait for the emulator/device to boot. If not set, the default timeout is 90 seconds. * `--no-watch` - If set, changes in your code will not be reflected during the execution of this command. * `--clean` - If set, forces rebuilding the native application. +* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary! ### Attributes * `` is the device identifier or name of the target device as listed by `$ tns device android` diff --git a/docs/man_pages/project/testing/debug-ios.md b/docs/man_pages/project/testing/debug-ios.md index 0ec1d4cd02..b65aa67dac 100644 --- a/docs/man_pages/project/testing/debug-ios.md +++ b/docs/man_pages/project/testing/debug-ios.md @@ -32,6 +32,7 @@ While debugging, prints the output from the application in the console and watch * `--clean` - If set, forces rebuilding the native application. * `--chrome` - Deprecated - default behavior uses '--chrome' implicitly. Allows debugging in Chrome Developer Tools. If set, Safari Web Inspector is not started and debugging is attached to Chrome Developer Tools. * `--inspector` - If set, the developer tools in the Safari Web Inspector are used for debugging the application. +* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary! ### Attributes * `` is the device identifier of the target device as listed by `$ tns device ios` diff --git a/docs/man_pages/project/testing/run-android.md b/docs/man_pages/project/testing/run-android.md index 76d34bd433..3e24a2a99a 100644 --- a/docs/man_pages/project/testing/run-android.md +++ b/docs/man_pages/project/testing/run-android.md @@ -26,6 +26,7 @@ Runs your project on a connected Android device or in a native Android emulator, * `--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. * `--bundle` - Specifies that a bundler (e.g. webpack) should be used if one is present. If no value is passed will default to `webpack`. * `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. For example: `--env.uglify --env.snapshot`. +* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary! ### Attributes * `` is the index or `Device Identifier` of the target device as listed by `$ tns device android --available-devices` diff --git a/docs/man_pages/project/testing/run-ios.md b/docs/man_pages/project/testing/run-ios.md index 7ed9f38b26..e4a45ab1e2 100644 --- a/docs/man_pages/project/testing/run-ios.md +++ b/docs/man_pages/project/testing/run-ios.md @@ -26,6 +26,7 @@ Runs your project on a connected iOS device or in the iOS Simulator, if configur * `--release` - If set, produces a release build. Otherwise, produces a debug build. * `--bundle` - Specifies that a bundler (e.g. webpack) should be used if one is present. If no value is passed will default to `webpack`. * `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. For example: `--env.uglify --env.snapshot`. +* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary! ### Attributes * `` is the index or `Device Identifier` of the target device as listed by `$ tns device ios --available-devices`