Skip to content

Commit 5ba84cc

Browse files
authored
Merge pull request #3453 from NativeScript/plamen5kov/add-docs
docs: add syncallfiles flag to help
2 parents 414d0d3 + 55d1461 commit 5ba84cc

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ While debugging, prints the output from the application in the console and watch
2424
* `--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.
2525
* `--no-watch` - If set, changes in your code will not be reflected during the execution of this command.
2626
* `--clean` - If set, forces rebuilding the native application.
27+
* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary!
2728

2829
### Attributes
2930
* `<Device ID>` is the device identifier or name of the target device as listed by `$ tns device android`

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

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ While debugging, prints the output from the application in the console and watch
3232
* `--clean` - If set, forces rebuilding the native application.
3333
* `--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.
3434
* `--inspector` - If set, the developer tools in the Safari Web Inspector are used for debugging the application.
35+
* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary!
3536

3637
### Attributes
3738
* `<Device ID>` is the device identifier of the target device as listed by `$ tns device ios`

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

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Runs your project on a connected Android device or in a native Android emulator,
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
* `--bundle` - Specifies that a bundler (e.g. webpack) should be used if one is present. If no value is passed will default to `webpack`.
2828
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. For example: `--env.uglify --env.snapshot`.
29+
* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary!
2930

3031
### Attributes
3132
* `<Device ID>` is the index or `Device Identifier` of the target device as listed by `$ tns device android --available-devices`

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

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Runs your project on a connected iOS device or in the iOS Simulator, if configur
2626
* `--release` - If set, produces a release build. Otherwise, produces a debug build.
2727
* `--bundle` - Specifies that a bundler (e.g. webpack) should be used if one is present. If no value is passed will default to `webpack`.
2828
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. For example: `--env.uglify --env.snapshot`.
29+
* `--syncAllFiles` - Watches all production dependencies inside node_modules for changes. Triggers project rebuild if necessary!
2930

3031
### Attributes
3132
* `<Device ID>` is the index or `Device Identifier` of the target device as listed by `$ tns device ios --available-devices`

0 commit comments

Comments
 (0)