Skip to content

Commit 994b666

Browse files
authored
Remove livesync command. (#2643)
* Remove livesync command. Livesync was depricated and run should be used instead. * Remove all references to the livesync command from docs.
1 parent 064aae0 commit 994b666

File tree

10 files changed

+0
-200
lines changed

10 files changed

+0
-200
lines changed

docs/man_pages/index.md

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Command | Description
3535
[test `<Platform>`](project/testing/test.html) | Runs the unit tests in your project on a connected physical or virtual device.
3636
[install](project/configuration/install.html) | Installs all platforms and dependencies described in the `package.json` file in the current directory.
3737
[plugin](lib-management/plugin.html) | Lets you manage the plugins for your project.
38-
[livesync](project/testing/livesync.html) | Synchronizes the latest changes in your project to devices.
3938

4039
## Publishing Commands
4140
Command | Description

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

-45
This file was deleted.

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

-50
This file was deleted.

docs/man_pages/project/testing/livesync.md

-46
This file was deleted.

docs/man_pages/publishing/appstore-upload.md

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ Command | Description
3232
[build](../project/testing/build.html) | Builds the project for the selected target platform and produces an application package that you can manually deploy on device or in the native emulator.
3333
[build ios](../project/testing/build-ios.html) | Builds the project for iOS and produces an APP or IPA that you can manually deploy in the iOS Simulator or on device, respectively.
3434
[deploy](../project/testing/deploy.html) | Builds and deploys the project to a connected physical or virtual device.
35-
[livesync](../project/testing/livesync.html) | Synchronizes the latest changes in your project to devices.
36-
[livesync ios](../project/testing/livesync-ios.html) | Synchronizes the latest changes in your project to iOS devices or the iOS Simulator.
3735
[run](../project/testing/run.html) | Runs your project on a connected device or in the native emulator for the selected platform.
3836
[run ios](../project/testing/run-ios.html) | Runs your project on a connected iOS device or in the iOS Simulator, if configured.
3937
<% } %>

docs/man_pages/publishing/appstore.md

-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ Command | Description
2727
[build](../project/testing/build.html) | Builds the project for the selected target platform and produces an application package that you can manually deploy on device or in the native emulator.
2828
[build ios](../project/testing/build-ios.html) | Builds the project for iOS and produces an APP or IPA that you can manually deploy in the iOS Simulator or on device, respectively.
2929
[deploy](../project/testing/deploy.html) | Builds and deploys the project to a connected physical or virtual device.
30-
[livesync](../project/testing/livesync.html) | Synchronizes the latest changes in your project to devices.
31-
[livesync ios](../project/testing/livesync-ios.html) | Synchronizes the latest changes in your project to iOS devices or the iOS Simulator.
3230
[run](../project/testing/run.html) | Runs your project on a connected device or in the native emulator for the selected platform.
3331
[run ios](../project/testing/run-ios.html) | Runs your project on a connected iOS device or in the iOS Simulator, if configured.
3432
<% } %>

docs/man_pages/publishing/publish-ios.md

-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ Command | Description
3434
[build](../project/testing/build.html) | Builds the project for the selected target platform and produces an application package that you can manually deploy on device or in the native emulator.
3535
[build ios](../project/testing/build-ios.html) | Builds the project for iOS and produces an APP or IPA that you can manually deploy in the iOS Simulator or on device, respectively.
3636
[deploy](../project/testing/deploy.html) | Builds and deploys the project to a connected physical or virtual device.
37-
[livesync](../project/testing/livesync.html) | Synchronizes the latest changes in your project to devices.
38-
[livesync ios](../project/testing/livesync-ios.html) | Synchronizes the latest changes in your project to iOS devices or the iOS Simulator.
3937
[run](../project/testing/run.html) | Runs your project on a connected device or in the native emulator for the selected platform.
4038
[run ios](../project/testing/run-ios.html) | Runs your project on a connected iOS device or in the iOS Simulator, if configured.
4139
<% } %>

docs/man_pages/publishing/publish.md

-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ Command | Description
2323
[build](../project/testing/build.html) | Builds the project for the selected target platform and produces an application package that you can manually deploy on device or in the native emulator.
2424
[build ios](../project/testing/build-ios.html) | Builds the project for iOS and produces an APP or IPA that you can manually deploy in the iOS Simulator or on device, respectively.
2525
[deploy](../project/testing/deploy.html) | Builds and deploys the project to a connected physical or virtual device.
26-
[livesync](../project/testing/livesync.html) | Synchronizes the latest changes in your project to devices.
27-
[livesync ios](../project/testing/livesync-ios.html) | Synchronizes the latest changes in your project to iOS devices or the iOS Simulator.
2826
[run](../project/testing/run.html) | Runs your project on a connected device or in the native emulator for the selected platform.
2927
[run ios](../project/testing/run-ios.html) | Runs your project on a connected iOS device or in the iOS Simulator, if configured.
3028
<% } %>

lib/bootstrap.ts

-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ $injector.require("androidToolsInfo", "./android-tools-info");
101101

102102
$injector.requireCommand("platform|clean", "./commands/platform-clean");
103103

104-
$injector.requireCommand("livesync", "./commands/livesync");
105104
$injector.require("usbLiveSyncService", "./services/livesync/livesync-service"); // The name is used in https://github.com/NativeScript/nativescript-dev-typescript
106105
$injector.require("iosLiveSyncServiceLocator", "./services/livesync/ios-device-livesync-service");
107106
$injector.require("androidLiveSyncServiceLocator", "./services/livesync/android-device-livesync-service");

lib/commands/livesync.ts

-49
This file was deleted.

0 commit comments

Comments
 (0)