nativescript 9.0.0-alpha.13 → 9.0.0-alpha.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config/test-deps-versions-generated.json +2 -2
- package/docs/build-jekyll-md.sh +1 -1
- package/docs/man_pages/config/config-get.md +36 -0
- package/docs/man_pages/config/config-set.md +40 -0
- package/docs/man_pages/config/config.md +39 -0
- package/docs/man_pages/project/hooks/hooks.md +35 -0
- package/docs/man_pages/start.md +1 -0
- package/lib/.d.ts +4 -0
- package/lib/android-tools-info.js +12 -0
- package/lib/base-package-manager.js +7 -0
- package/lib/bootstrap.js +7 -1
- package/lib/bun-package-manager.js +14 -1
- package/lib/color.js +4 -0
- package/lib/commands/add-platform.js +1 -0
- package/lib/commands/apple-login.js +1 -0
- package/lib/commands/appstore-list.js +1 -0
- package/lib/commands/appstore-upload.js +3 -0
- package/lib/commands/build.js +3 -2
- package/lib/commands/clean.js +22 -1
- package/lib/commands/command-base.js +1 -0
- package/lib/commands/config.js +5 -0
- package/lib/commands/create-project.js +6 -0
- package/lib/commands/debug.js +6 -1
- package/lib/commands/deploy.js +3 -2
- package/lib/commands/embedding/embed.js +7 -0
- package/lib/commands/extensibility/install-extension.js +1 -0
- package/lib/commands/extensibility/list-extensions.js +1 -0
- package/lib/commands/extensibility/uninstall-extension.js +1 -0
- package/lib/commands/fonts.js +1 -0
- package/lib/commands/generate-assets.js +1 -0
- package/lib/commands/generate-help.js +1 -0
- package/lib/commands/generate.js +48 -1
- package/lib/commands/hooks/common.js +80 -0
- package/lib/commands/hooks/hooks-lock.js +101 -0
- package/lib/commands/hooks/hooks.js +72 -0
- package/lib/commands/info.js +1 -0
- package/lib/commands/install.js +1 -0
- package/lib/commands/list-platforms.js +1 -0
- package/lib/commands/migrate.js +1 -0
- package/lib/commands/native-add.js +5 -0
- package/lib/commands/platform-clean.js +1 -0
- package/lib/commands/plugin/add-plugin.js +1 -0
- package/lib/commands/plugin/build-plugin.js +1 -0
- package/lib/commands/plugin/create-plugin.js +5 -0
- package/lib/commands/plugin/list-plugins.js +1 -0
- package/lib/commands/plugin/remove-plugin.js +2 -0
- package/lib/commands/plugin/update-plugin.js +1 -0
- package/lib/commands/post-install.js +6 -0
- package/lib/commands/prepare.js +4 -3
- package/lib/commands/preview.js +2 -0
- package/lib/commands/remove-platform.js +1 -0
- package/lib/commands/resources/resources-update.js +2 -0
- package/lib/commands/run.js +1 -0
- package/lib/commands/setup.js +1 -0
- package/lib/commands/start.js +1 -0
- package/lib/commands/test-init.js +4 -0
- package/lib/commands/test.js +9 -2
- package/lib/commands/typings.js +2 -1
- package/lib/commands/update-platform.js +5 -0
- package/lib/commands/update.js +2 -0
- package/lib/commands/widget.js +20 -1
- package/lib/common/bootstrap.js +1 -0
- package/lib/common/child-process.js +3 -0
- package/lib/common/codeGeneration/code-entity.js +1 -0
- package/lib/common/codeGeneration/code-printer.js +1 -0
- package/lib/common/command-params.js +1 -0
- package/lib/common/commands/analytics.js +3 -0
- package/lib/common/commands/autocompletion.js +3 -0
- package/lib/common/commands/device/device-log-stream.js +1 -0
- package/lib/common/commands/device/get-file.js +2 -0
- package/lib/common/commands/device/list-applications.js +1 -0
- package/lib/common/commands/device/list-devices.js +3 -0
- package/lib/common/commands/device/list-files.js +2 -0
- package/lib/common/commands/device/put-file.js +2 -0
- package/lib/common/commands/device/run-application.js +1 -0
- package/lib/common/commands/device/stop-application.js +1 -0
- package/lib/common/commands/device/uninstall-application.js +1 -0
- package/lib/common/commands/doctor.js +3 -2
- package/lib/common/commands/generate-messages.js +1 -0
- package/lib/common/commands/help.js +1 -0
- package/lib/common/commands/package-manager-get.js +1 -0
- package/lib/common/commands/package-manager-set.js +1 -0
- package/lib/common/commands/post-install.js +1 -0
- package/lib/common/commands/preuninstall.js +11 -2
- package/lib/common/commands/proxy/proxy-base.js +4 -0
- package/lib/common/commands/proxy/proxy-clear.js +1 -0
- package/lib/common/commands/proxy/proxy-get.js +1 -0
- package/lib/common/commands/proxy/proxy-set.js +1 -0
- package/lib/common/common-lib.js +1 -0
- package/lib/common/constants.js +11 -0
- package/lib/common/decorators.js +48 -0
- package/lib/common/definitions/extensibility.d.ts +2 -2
- package/lib/common/definitions/mobile.d.ts +72 -72
- package/lib/common/dispatchers.js +10 -1
- package/lib/common/errors.js +13 -3
- package/lib/common/file-system.js +13 -2
- package/lib/common/header.js +3 -0
- package/lib/common/helpers.js +89 -3
- package/lib/common/host-info.js +4 -0
- package/lib/common/http-client.js +20 -0
- package/lib/common/logger/appenders/cli-appender.js +4 -0
- package/lib/common/logger/appenders/emit-appender.js +4 -0
- package/lib/common/logger/layouts/cli-layout.js +1 -0
- package/lib/common/logger/logger.js +5 -0
- package/lib/common/messages/messages.js +6 -0
- package/lib/common/mobile/android/android-application-manager.js +20 -1
- package/lib/common/mobile/android/android-debug-bridge-result-handler.js +1 -0
- package/lib/common/mobile/android/android-debug-bridge.js +6 -0
- package/lib/common/mobile/android/android-device-file-system.js +4 -0
- package/lib/common/mobile/android/android-device-hash-service.js +3 -0
- package/lib/common/mobile/android/android-device.js +8 -0
- package/lib/common/mobile/android/android-emulator-services.js +2 -1
- package/lib/common/mobile/android/android-ini-file-parser.js +9 -0
- package/lib/common/mobile/android/android-log-filter.js +4 -0
- package/lib/common/mobile/android/android-virtual-device-service.js +26 -0
- package/lib/common/mobile/android/device-android-debug-bridge.js +1 -0
- package/lib/common/mobile/android/genymotion/genymotion-service.js +6 -1
- package/lib/common/mobile/android/genymotion/virtualbox-service.js +11 -0
- package/lib/common/mobile/android/logcat-helper.js +13 -0
- package/lib/common/mobile/application-manager-base.js +6 -0
- package/lib/common/mobile/device-emitter.js +4 -0
- package/lib/common/mobile/device-log-emitter.js +1 -0
- package/lib/common/mobile/device-log-provider-base.js +1 -0
- package/lib/common/mobile/device-log-provider.js +23 -0
- package/lib/common/mobile/device-platforms-constants.js +1 -0
- package/lib/common/mobile/emulator-helper.js +3 -0
- package/lib/common/mobile/ios/device/ios-application-manager.js +3 -0
- package/lib/common/mobile/ios/device/ios-device-file-system.js +1 -0
- package/lib/common/mobile/ios/device/ios-device-operations.js +4 -0
- package/lib/common/mobile/ios/device/ios-device.js +4 -0
- package/lib/common/mobile/ios/ios-device-base.js +1 -0
- package/lib/common/mobile/ios/ios-device-product-name-mapper.js +2 -0
- package/lib/common/mobile/ios/ios-log-filter.js +1 -0
- package/lib/common/mobile/ios/simulator/ios-emulator-services.js +4 -0
- package/lib/common/mobile/ios/simulator/ios-sim-resolver.js +1 -0
- package/lib/common/mobile/ios/simulator/ios-simulator-application-manager.js +6 -0
- package/lib/common/mobile/ios/simulator/ios-simulator-device.js +5 -0
- package/lib/common/mobile/ios/simulator/ios-simulator-file-system.js +1 -0
- package/lib/common/mobile/ios/simulator/ios-simulator-log-provider.js +1 -0
- package/lib/common/mobile/local-to-device-path-data-factory.js +1 -0
- package/lib/common/mobile/log-filter.js +2 -0
- package/lib/common/mobile/logging-levels.js +1 -0
- package/lib/common/mobile/mobile-core/android-device-discovery.js +2 -0
- package/lib/common/mobile/mobile-core/android-emulator-discovery.js +3 -0
- package/lib/common/mobile/mobile-core/android-process-service.js +32 -0
- package/lib/common/mobile/mobile-core/device-discovery.js +1 -0
- package/lib/common/mobile/mobile-core/devices-service.js +69 -0
- package/lib/common/mobile/mobile-core/ios-device-discovery.js +2 -0
- package/lib/common/mobile/mobile-core/ios-simulator-discovery.js +3 -0
- package/lib/common/mobile/mobile-helper.js +1 -0
- package/lib/common/mobile/wp8/wp8-emulator-services.js +1 -0
- package/lib/common/opener.js +1 -0
- package/lib/common/os-info.js +1 -0
- package/lib/common/plist-parser.js +1 -0
- package/lib/common/project-helper.js +1 -0
- package/lib/common/prompter.js +9 -1
- package/lib/common/queue.js +1 -0
- package/lib/common/resource-loader.js +1 -0
- package/lib/common/services/auto-completion-service.js +13 -1
- package/lib/common/services/cancellation.js +2 -1
- package/lib/common/services/commands-service.js +17 -6
- package/lib/common/services/help-service.js +11 -3
- package/lib/common/services/hooks-service.js +13 -0
- package/lib/common/services/ios-notification-service.js +1 -0
- package/lib/common/services/json-file-settings-service.js +6 -0
- package/lib/common/services/lock-service.js +6 -0
- package/lib/common/services/message-contract-generator.js +1 -0
- package/lib/common/services/messages-service.js +1 -0
- package/lib/common/services/micro-templating-service.js +6 -0
- package/lib/common/services/net-service.js +3 -0
- package/lib/common/services/project-files-manager.js +5 -0
- package/lib/common/services/project-files-provider-base.js +1 -0
- package/lib/common/services/proxy-service.js +1 -0
- package/lib/common/services/qr.js +1 -0
- package/lib/common/services/settings-service.js +1 -0
- package/lib/common/services/xcode-select-service.js +1 -0
- package/lib/common/utils.js +1 -0
- package/lib/common/validators/project-name-validator.js +1 -0
- package/lib/common/validators/validation-result.js +1 -0
- package/lib/common/verify-node-version.js +8 -1
- package/lib/common/yok.js +32 -11
- package/lib/config.js +22 -1
- package/lib/constants-provider.js +1 -0
- package/lib/constants.js +53 -0
- package/lib/controllers/build-controller.js +4 -3
- package/lib/controllers/debug-controller.js +8 -3
- package/lib/controllers/deploy-controller.js +1 -0
- package/lib/controllers/migrate-controller.js +90 -4
- package/lib/controllers/platform-controller.js +9 -1
- package/lib/controllers/prepare-controller.js +17 -4
- package/lib/controllers/run-controller.js +17 -1
- package/lib/controllers/update-controller-base.js +1 -0
- package/lib/controllers/update-controller.js +11 -0
- package/lib/data/build-data.js +1 -0
- package/lib/data/controller-data-base.js +1 -0
- package/lib/data/debug-data.js +1 -0
- package/lib/data/platform-data.js +1 -0
- package/lib/data/prepare-data.js +1 -0
- package/lib/data/run-data.js +1 -0
- package/lib/definitions/hooks.d.ts +1 -0
- package/lib/detached-processes/cleanup-js-subprocess.js +8 -2
- package/lib/detached-processes/cleanup-process.js +18 -14
- package/lib/detached-processes/file-log-service.js +2 -1
- package/lib/device-path-provider.js +1 -0
- package/lib/device-sockets/ios/app-debug-socket-proxy-factory.js +7 -0
- package/lib/device-sockets/ios/notification.js +3 -0
- package/lib/device-sockets/ios/socket-request-executor.js +3 -0
- package/lib/helpers/android-bundle-validator-helper.js +2 -1
- package/lib/helpers/deploy-command-helper.js +1 -0
- package/lib/helpers/key-command-helper.js +4 -2
- package/lib/helpers/livesync-command-helper.js +4 -1
- package/lib/helpers/network-connectivity-validator.js +1 -0
- package/lib/helpers/options-track-helper.js +3 -2
- package/lib/helpers/package-path-helper.js +1 -0
- package/lib/helpers/platform-command-helper.js +7 -2
- package/lib/helpers/version-validator-helper.js +1 -0
- package/lib/key-commands/bootstrap.js +3 -2
- package/lib/key-commands/index.js +5 -4
- package/lib/nativescript-cli-lib-bootstrap.js +4 -0
- package/lib/nativescript-cli-lib.js +1 -0
- package/lib/nativescript-cli.js +11 -1
- package/lib/node/pbxproj-dom-xcode.js +1 -0
- package/lib/node/xcode.js +1 -0
- package/lib/node-package-manager.js +11 -1
- package/lib/options.js +144 -119
- package/lib/package-installation-manager.js +8 -1
- package/lib/package-manager.js +2 -0
- package/lib/platform-command-param.js +1 -0
- package/lib/pnpm-package-manager.js +4 -1
- package/lib/project-data.js +12 -0
- package/lib/providers/project-files-provider.js +1 -0
- package/lib/resolvers/livesync-service-resolver.js +1 -0
- package/lib/services/analytics/analytics-broker-process.js +10 -6
- package/lib/services/analytics/analytics-broker.js +2 -1
- package/lib/services/analytics/analytics-service.js +29 -25
- package/lib/services/analytics/google-analytics-provider.js +13 -12
- package/lib/services/analytics-settings-service.js +5 -0
- package/lib/services/android/android-bundle-tool-service.js +1 -0
- package/lib/services/android/gradle-build-args-service.js +3 -0
- package/lib/services/android/gradle-build-service.js +1 -0
- package/lib/services/android/gradle-command-service.js +1 -0
- package/lib/services/android-device-debug-service.js +6 -0
- package/lib/services/android-plugin-build-service.js +31 -2
- package/lib/services/android-project-service.js +71 -4
- package/lib/services/android-resources-migration-service.js +7 -0
- package/lib/services/apple-portal/apple-portal-application-service.js +1 -0
- package/lib/services/apple-portal/apple-portal-cookie-service.js +1 -0
- package/lib/services/apple-portal/apple-portal-session-service.js +6 -4
- package/lib/services/apple-portal/srp/srp-wrapper.js +4 -1
- package/lib/services/assets-generation/assets-generation-service.js +10 -5
- package/lib/services/build-artifacts-service.js +2 -1
- package/lib/services/build-data-service.js +1 -0
- package/lib/services/build-info-file-service.js +1 -0
- package/lib/services/bundler/bundler-compiler-service.js +88 -17
- package/lib/services/bundler/bundler.js +1 -0
- package/lib/services/cleanup-service.js +13 -9
- package/lib/services/cocoapods-platform-manager.js +9 -0
- package/lib/services/cocoapods-service.js +21 -1
- package/lib/services/debug-data-service.js +1 -0
- package/lib/services/debug-service-base.js +7 -0
- package/lib/services/device/device-install-app-service.js +2 -1
- package/lib/services/doctor-service.js +21 -6
- package/lib/services/extensibility-service.js +9 -1
- package/lib/services/files-hash-service.js +1 -0
- package/lib/services/hmr-status-service.js +2 -0
- package/lib/services/info-service.js +1 -0
- package/lib/services/initialize-service.js +5 -1
- package/lib/services/ios/export-options-plist-service.js +4 -0
- package/lib/services/ios/ios-signing-service.js +4 -0
- package/lib/services/ios/spm-service.js +11 -0
- package/lib/services/ios/xcodebuild-args-service.js +9 -0
- package/lib/services/ios/xcodebuild-command-service.js +1 -0
- package/lib/services/ios/xcodebuild-service.js +2 -1
- package/lib/services/ios-debugger-port-service.js +1 -0
- package/lib/services/ios-device-debug-service.js +1 -0
- package/lib/services/ios-entitlements-service.js +1 -0
- package/lib/services/ios-extensions-service.js +1 -0
- package/lib/services/ios-log-filter.js +20 -0
- package/lib/services/ios-native-target-service.js +6 -4
- package/lib/services/ios-project-service.js +91 -1
- package/lib/services/ios-provision-service.js +3 -0
- package/lib/services/ios-watch-app-service.js +1 -0
- package/lib/services/ip-service.js +2 -0
- package/lib/services/itmstransporter-service.js +1 -0
- package/lib/services/karma-execution.js +2 -0
- package/lib/services/livesync/android-device-livesync-service-base.js +1 -0
- package/lib/services/livesync/android-device-livesync-service.js +2 -0
- package/lib/services/livesync/android-device-livesync-sockets-service.js +3 -0
- package/lib/services/livesync/android-livesync-service.js +1 -0
- package/lib/services/livesync/android-livesync-tool.js +4 -0
- package/lib/services/livesync/device-livesync-service-base.js +2 -0
- package/lib/services/livesync/ios-device-livesync-service.js +7 -0
- package/lib/services/livesync/ios-livesync-service.js +2 -0
- package/lib/services/livesync/livesync-socket.js +1 -0
- package/lib/services/livesync/platform-livesync-service-base.js +5 -0
- package/lib/services/livesync-process-data-service.js +1 -0
- package/lib/services/log-parser-service.js +1 -0
- package/lib/services/log-source-map-service.js +15 -0
- package/lib/services/marking-mode-service.js +8 -5
- package/lib/services/metadata-filtering-service.js +1 -0
- package/lib/services/npm-config-service.js +4 -0
- package/lib/services/pacote-service.js +7 -0
- package/lib/services/performance-service.js +3 -1
- package/lib/services/platform/add-platform-service.js +49 -2
- package/lib/services/platform/platform-validation-service.js +1 -0
- package/lib/services/platform/prepare-native-platform-service.js +5 -2
- package/lib/services/platform-environment-requirements.js +8 -3
- package/lib/services/platform-project-service-base.js +1 -0
- package/lib/services/platforms-data-service.js +1 -0
- package/lib/services/plugins-service.js +21 -2
- package/lib/services/prepare-data-service.js +1 -0
- package/lib/services/project-backup-service.js +4 -0
- package/lib/services/project-changes-service.js +14 -3
- package/lib/services/project-cleanup-service.js +2 -0
- package/lib/services/project-config-service.js +21 -2
- package/lib/services/project-data-service.js +36 -7
- package/lib/services/project-name-service.js +1 -0
- package/lib/services/project-service.js +10 -0
- package/lib/services/project-templates-service.js +3 -2
- package/lib/services/qr-code-terminal-service.js +1 -0
- package/lib/services/require-service.js +1 -0
- package/lib/services/start-service.js +1 -0
- package/lib/services/temp-service.js +3 -0
- package/lib/services/terminal-spinner-service.js +2 -0
- package/lib/services/test-execution-service.js +9 -2
- package/lib/services/test-initialization-service.js +4 -0
- package/lib/services/timeline-profiler-service.js +1 -0
- package/lib/services/user-settings-service.js +1 -0
- package/lib/services/versions-service.js +6 -4
- package/lib/services/watch-ignore-list-service.js +1 -0
- package/lib/services/xcconfig-service.js +2 -0
- package/lib/services/xcproj-service.js +1 -0
- package/lib/shared-event-bus.js +6 -0
- package/lib/sys-info.js +2 -1
- package/lib/tools/config-manipulation/config-transformer.js +12 -0
- package/lib/tools/node-modules/node-modules-builder.js +1 -0
- package/lib/tools/node-modules/node-modules-dependencies-builder.js +6 -0
- package/lib/yarn-package-manager.js +1 -0
- package/lib/yarn2-package-manager.js +3 -0
- package/package.json +11 -10
- package/vendor/aab-tool/README.txt +1 -1
- package/vendor/aab-tool/bundletool.jar +0 -0
- package/vendor/gradle-plugin/build.gradle +1 -1
package/lib/commands/test.js
CHANGED
|
@@ -7,7 +7,7 @@ class TestCommandBase {
|
|
|
7
7
|
constructor() {
|
|
8
8
|
this.allowedParameters = [];
|
|
9
9
|
this.dashedOptions = {
|
|
10
|
-
hmr: { type: "boolean"
|
|
10
|
+
hmr: { type: "boolean" /* OptionType.Boolean */, default: false, hasSensitiveValue: false },
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
13
|
async execute(args) {
|
|
@@ -26,6 +26,8 @@ class TestCommandBase {
|
|
|
26
26
|
deviceId: this.$options.device,
|
|
27
27
|
});
|
|
28
28
|
devices = [selectedDeviceForDebug];
|
|
29
|
+
// const debugData = this.getDebugData(platform, projectData, deployOptions, { device: selectedDeviceForDebug.deviceInfo.identifier });
|
|
30
|
+
// await this.$debugService.debug(debugData, this.$options);
|
|
29
31
|
}
|
|
30
32
|
else {
|
|
31
33
|
devices = await this.$liveSyncCommandHelper.getDeviceInstances(this.platform);
|
|
@@ -39,11 +41,15 @@ class TestCommandBase {
|
|
|
39
41
|
devices.forEach((device) => (deviceDebugMap[device.deviceInfo.identifier] = this.$options.debugBrk));
|
|
40
42
|
const deviceDescriptors = await this.$liveSyncCommandHelper.createDeviceDescriptors(devices, this.platform, { deviceDebugMap });
|
|
41
43
|
await this.$testExecutionService.startKarmaServer(this.platform, liveSyncInfo, deviceDescriptors);
|
|
44
|
+
// if we got here, it means karma exited with exit code 0 (success)
|
|
42
45
|
process.exit(0);
|
|
43
46
|
}
|
|
44
47
|
async canExecute(args) {
|
|
45
48
|
if (!this.$options.force) {
|
|
46
49
|
if (this.$options.hmr) {
|
|
50
|
+
// With HMR we are not restarting after LiveSync which is causing a 30 seconds app start on Android
|
|
51
|
+
// because the Runtime does not watch for the `/data/local/tmp<appId>-livesync-in-progress` file deletion.
|
|
52
|
+
// The App is closing itself after each test execution and the bug will be reproducible on each LiveSync.
|
|
47
53
|
this.$errors.fail("The `--hmr` option is not supported for this command.");
|
|
48
54
|
}
|
|
49
55
|
await this.$migrateController.validate({
|
|
@@ -63,7 +69,7 @@ class TestCommandBase {
|
|
|
63
69
|
if (!canStartKarmaServer) {
|
|
64
70
|
this.$errors.fail({
|
|
65
71
|
formatStr: "Error: In order to run unit tests, your project must already be configured by running $ ns test init.",
|
|
66
|
-
errorCode: 133
|
|
72
|
+
errorCode: 133 /* ErrorCodes.TESTS_INIT_REQUIRED */,
|
|
67
73
|
});
|
|
68
74
|
}
|
|
69
75
|
return output.canExecute && canStartKarmaServer;
|
|
@@ -121,3 +127,4 @@ class TestIosCommand extends TestCommandBase {
|
|
|
121
127
|
}
|
|
122
128
|
yok_1.injector.registerCommand("test|android", TestAndroidCommand);
|
|
123
129
|
yok_1.injector.registerCommand("test|ios", TestIosCommand);
|
|
130
|
+
//# sourceMappingURL=test.js.map
|
package/lib/commands/typings.js
CHANGED
|
@@ -88,7 +88,7 @@ class TypingsCommand {
|
|
|
88
88
|
value: item.id,
|
|
89
89
|
};
|
|
90
90
|
}), true, {
|
|
91
|
-
optionsPerPage: process.stdout.rows - 6,
|
|
91
|
+
optionsPerPage: process.stdout.rows - 6, // 6 lines are taken up by the instructions
|
|
92
92
|
});
|
|
93
93
|
this.$logger.clearScreen();
|
|
94
94
|
return items
|
|
@@ -162,3 +162,4 @@ class TypingsCommand {
|
|
|
162
162
|
}
|
|
163
163
|
exports.TypingsCommand = TypingsCommand;
|
|
164
164
|
yok_1.injector.registerCommand("typings", TypingsCommand);
|
|
165
|
+
//# sourceMappingURL=typings.js.map
|
|
@@ -31,6 +31,10 @@ class UpdatePlatformCommand {
|
|
|
31
31
|
platform,
|
|
32
32
|
options: this.$options,
|
|
33
33
|
};
|
|
34
|
+
// If version is not specified, we know the command will install the latest compatible Android runtime.
|
|
35
|
+
// The latest compatible Android runtime supports Java version, so we do not need to pass it here.
|
|
36
|
+
// Passing projectDir to the @nativescript/doctor validation will cause it to check the runtime from the current package.json
|
|
37
|
+
// So in this case, where we do not want to validate the runtime, just do not pass both projectDir and runtimeVersion.
|
|
34
38
|
if (versionToBeInstalled) {
|
|
35
39
|
checkEnvironmentRequirementsInput.projectDir = this.$projectData.projectDir;
|
|
36
40
|
checkEnvironmentRequirementsInput.runtimeVersion = versionToBeInstalled;
|
|
@@ -42,3 +46,4 @@ class UpdatePlatformCommand {
|
|
|
42
46
|
}
|
|
43
47
|
exports.UpdatePlatformCommand = UpdatePlatformCommand;
|
|
44
48
|
yok_1.injector.registerCommand("platform|update", UpdatePlatformCommand);
|
|
49
|
+
//# sourceMappingURL=update-platform.js.map
|
package/lib/commands/update.js
CHANGED
|
@@ -17,6 +17,7 @@ class UpdateCommand {
|
|
|
17
17
|
}
|
|
18
18
|
async execute(args) {
|
|
19
19
|
if (this.$options.markingMode) {
|
|
20
|
+
// ns update --markingMode
|
|
20
21
|
await this.$markingModeService.handleMarkingModeFullDeprecation({
|
|
21
22
|
projectDir: this.$projectData.projectDir,
|
|
22
23
|
forceSwitch: true,
|
|
@@ -55,3 +56,4 @@ exports.UpdateCommand = UpdateCommand;
|
|
|
55
56
|
UpdateCommand.SHOULD_MIGRATE_PROJECT_MESSAGE = 'This project is not compatible with the current NativeScript version and cannot be updated. Use "ns migrate" to make your project compatible.';
|
|
56
57
|
UpdateCommand.PROJECT_UP_TO_DATE_MESSAGE = "This project is up to date.";
|
|
57
58
|
yok_1.injector.registerCommand("update", UpdateCommand);
|
|
59
|
+
//# sourceMappingURL=update.js.map
|
package/lib/commands/widget.js
CHANGED
|
@@ -76,6 +76,7 @@ class WidgetIOSCommand extends WidgetCommand {
|
|
|
76
76
|
});
|
|
77
77
|
const bundleId = this.$projectConfigService.getValue(`id`, "");
|
|
78
78
|
if ([0, 1].includes(result.value)) {
|
|
79
|
+
// shared model only needed with live activities
|
|
79
80
|
await this.generateSharedWidgetPackage(this.$projectData.projectDir, name);
|
|
80
81
|
}
|
|
81
82
|
this.generateWidget(this.$projectData.projectDir, name, bundleId, result.value);
|
|
@@ -145,6 +146,7 @@ public struct ${(0, utils_1.capitalizeFirstLetter)(name)}Model: ActivityAttribut
|
|
|
145
146
|
}
|
|
146
147
|
}${os_1.EOL}`;
|
|
147
148
|
fs.writeFileSync(sharedWidgetSourcePath, content);
|
|
149
|
+
// update spm package
|
|
148
150
|
const configData = this.$projectConfigService.readConfig(projectDir);
|
|
149
151
|
if (!configData.ios) {
|
|
150
152
|
configData.ios = {};
|
|
@@ -159,16 +161,19 @@ public struct ${(0, utils_1.capitalizeFirstLetter)(name)}Model: ActivityAttribut
|
|
|
159
161
|
name: "SharedWidget",
|
|
160
162
|
libs: ["SharedWidget"],
|
|
161
163
|
path: "./Shared_Resources/iOS/SharedWidget",
|
|
164
|
+
// @ts-ignore
|
|
162
165
|
targets: [name],
|
|
163
166
|
});
|
|
164
167
|
}
|
|
165
168
|
else {
|
|
169
|
+
// add target if needed
|
|
166
170
|
if (!((_a = sharedWidgetPackage.targets) === null || _a === void 0 ? void 0 : _a.includes(name))) {
|
|
167
171
|
sharedWidgetPackage.targets.push(name);
|
|
168
172
|
}
|
|
169
173
|
}
|
|
170
174
|
configData.ios.SPMPackages = spmPackages;
|
|
171
|
-
await this.$projectConfigService.setValue("",
|
|
175
|
+
await this.$projectConfigService.setValue("", // root
|
|
176
|
+
configData);
|
|
172
177
|
if (fs.existsSync(gitIgnorePath)) {
|
|
173
178
|
const gitIgnore = fs.readFileSync(gitIgnorePath, {
|
|
174
179
|
encoding: "utf-8",
|
|
@@ -198,6 +203,11 @@ public struct ${(0, utils_1.capitalizeFirstLetter)(name)}Model: ActivityAttribut
|
|
|
198
203
|
const widgetBundlePath = path.join(widgetPath, `${capitalName}Bundle.swift`);
|
|
199
204
|
const widgetHomeScreenPath = path.join(widgetPath, `${capitalName}HomeScreenWidget.swift`);
|
|
200
205
|
const widgetLiveActivityPath = path.join(widgetPath, `${capitalName}LiveActivity.swift`);
|
|
206
|
+
// const appIntentPath = path.join(widgetPath, `AppIntent.swift`);
|
|
207
|
+
// const widgetLockScreenControlPath = path.join(
|
|
208
|
+
// widgetPath,
|
|
209
|
+
// `${capitalName}LockScreenControl.swift`
|
|
210
|
+
// );
|
|
201
211
|
const appEntitlementsPath = path.join(appResourcePath, "iOS", "app.entitlements");
|
|
202
212
|
if (!fs.existsSync(extensionsConfigPath)) {
|
|
203
213
|
fs.mkdirSync(widgetPath, { recursive: true });
|
|
@@ -239,6 +249,8 @@ public struct ${(0, utils_1.capitalizeFirstLetter)(name)}Model: ActivityAttribut
|
|
|
239
249
|
</dict>
|
|
240
250
|
</plist>${os_1.EOL}`;
|
|
241
251
|
fs.writeFileSync(extensionsPrivacyPath, content);
|
|
252
|
+
// TODO: can add control (lock screen custom control icon handler) in future
|
|
253
|
+
// ${[1, 2].includes(type) ? capitalName + "LockScreenControl()" : ""}
|
|
242
254
|
content = `import WidgetKit
|
|
243
255
|
import SwiftUI
|
|
244
256
|
|
|
@@ -562,6 +574,7 @@ struct ${capitalName}HomeScreenWidget: Widget {
|
|
|
562
574
|
encoding: "utf-8",
|
|
563
575
|
}));
|
|
564
576
|
if (!appInfoPlist[appSupportLiveActivity]) {
|
|
577
|
+
// @ts-ignore
|
|
565
578
|
appInfoPlist[appSupportLiveActivity] = true;
|
|
566
579
|
const appPlist = plist.build(appInfoPlist);
|
|
567
580
|
fs.writeFileSync(appInfoPlistPath, appPlist);
|
|
@@ -573,6 +586,7 @@ struct ${capitalName}HomeScreenWidget: Widget {
|
|
|
573
586
|
encoding: "utf-8",
|
|
574
587
|
}));
|
|
575
588
|
if (!appEntitlementsPlist[appGroupKey]) {
|
|
589
|
+
// @ts-ignore
|
|
576
590
|
appEntitlementsPlist[appGroupKey] = [`group.${bundleId}`];
|
|
577
591
|
const appEntitlements = plist.build(appEntitlementsPlist);
|
|
578
592
|
console.log("appentitlement:", appEntitlements);
|
|
@@ -653,6 +667,10 @@ struct ${capitalName}HomeScreenWidget: Widget {
|
|
|
653
667
|
}
|
|
654
668
|
console.log(steps.join("\n"));
|
|
655
669
|
}
|
|
670
|
+
// if (fs.existsSync(filePath)) {
|
|
671
|
+
// this.$errors.failWithHelp(`Error: File '${filePath}' already exists.`);
|
|
672
|
+
// return;
|
|
673
|
+
// }
|
|
656
674
|
}
|
|
657
675
|
generateAppleUtility(projectDir, name, bundleId, type) {
|
|
658
676
|
const capitalName = (0, utils_1.capitalizeFirstLetter)(name);
|
|
@@ -797,3 +815,4 @@ declare class AppleWidgetUtils extends NSObject {
|
|
|
797
815
|
exports.WidgetIOSCommand = WidgetIOSCommand;
|
|
798
816
|
yok_1.injector.registerCommand(["widget"], WidgetCommand);
|
|
799
817
|
yok_1.injector.registerCommand(["widget|ios"], WidgetIOSCommand);
|
|
818
|
+
//# sourceMappingURL=widget.js.map
|
package/lib/common/bootstrap.js
CHANGED
|
@@ -95,3 +95,4 @@ yok_1.injector.require("xcodeSelectService", "./services/xcode-select-service");
|
|
|
95
95
|
yok_1.injector.require("net", "./services/net-service");
|
|
96
96
|
yok_1.injector.require("qr", "./services/qr");
|
|
97
97
|
yok_1.injector.require(["lockfile", "lockService"], "./services/lock-service");
|
|
98
|
+
//# sourceMappingURL=bootstrap.js.map
|
|
@@ -47,6 +47,7 @@ class ChildProcess extends events_1.EventEmitter {
|
|
|
47
47
|
spawn(command, args, options) {
|
|
48
48
|
var _a;
|
|
49
49
|
if (command.charAt(0) === ".") {
|
|
50
|
+
// resolve relative paths to full paths to avoid node Spawn ENOENT errors on some setups.
|
|
50
51
|
const cwd = (_a = options === null || options === void 0 ? void 0 : options.cwd) !== null && _a !== void 0 ? _a : process.cwd();
|
|
51
52
|
command = (0, path_1.resolve)(cwd, command);
|
|
52
53
|
}
|
|
@@ -58,6 +59,7 @@ class ChildProcess extends events_1.EventEmitter {
|
|
|
58
59
|
return child_process.fork(modulePath, args, options);
|
|
59
60
|
}
|
|
60
61
|
spawnFromEvent(command, args, event, options, spawnFromEventOptions) {
|
|
62
|
+
// event should be exit or close
|
|
61
63
|
return new Promise((resolve, reject) => {
|
|
62
64
|
const childProcess = this.spawn(command, args, options);
|
|
63
65
|
let isResolved = false;
|
|
@@ -196,3 +198,4 @@ class ChildProcess extends events_1.EventEmitter {
|
|
|
196
198
|
}
|
|
197
199
|
exports.ChildProcess = ChildProcess;
|
|
198
200
|
yok_1.injector.register("childProcess", ChildProcess);
|
|
201
|
+
//# sourceMappingURL=child-process.js.map
|
|
@@ -37,9 +37,11 @@ class AnalyticsCommand {
|
|
|
37
37
|
switch (arg.toLowerCase()) {
|
|
38
38
|
case "enable":
|
|
39
39
|
await this.$analyticsService.setStatus(this.settingName, true);
|
|
40
|
+
// TODO(Analytics): await this.$analyticsService.track(this.settingName, "enabled");
|
|
40
41
|
this.$logger.info(`${this.humanReadableSettingName} is now enabled.`);
|
|
41
42
|
break;
|
|
42
43
|
case "disable":
|
|
44
|
+
// TODO(Analytics): await this.$analyticsService.track(this.settingName, "disabled");
|
|
43
45
|
await this.$analyticsService.setStatus(this.settingName, false);
|
|
44
46
|
this.$logger.info(`${this.humanReadableSettingName} is now disabled.`);
|
|
45
47
|
break;
|
|
@@ -66,3 +68,4 @@ class ErrorReportingCommand extends AnalyticsCommand {
|
|
|
66
68
|
}
|
|
67
69
|
exports.ErrorReportingCommand = ErrorReportingCommand;
|
|
68
70
|
yok_1.injector.registerCommand("error-reporting", ErrorReportingCommand);
|
|
71
|
+
//# sourceMappingURL=analytics.js.map
|
|
@@ -15,6 +15,7 @@ class AutoCompleteCommand {
|
|
|
15
15
|
if (helpers.isInteractive()) {
|
|
16
16
|
if (this.$autoCompletionService.isAutoCompletionEnabled()) {
|
|
17
17
|
if (this.$autoCompletionService.isObsoleteAutoCompletionEnabled()) {
|
|
18
|
+
// obsolete autocompletion is enabled, update it to the new one:
|
|
18
19
|
await this.$autoCompletionService.enableAutoCompletion();
|
|
19
20
|
}
|
|
20
21
|
else {
|
|
@@ -29,6 +30,7 @@ class AutoCompleteCommand {
|
|
|
29
30
|
await this.$autoCompletionService.enableAutoCompletion();
|
|
30
31
|
}
|
|
31
32
|
else {
|
|
33
|
+
// make sure we've removed all autocompletion code from all shell profiles
|
|
32
34
|
this.$autoCompletionService.disableAutoCompletion();
|
|
33
35
|
}
|
|
34
36
|
}
|
|
@@ -91,3 +93,4 @@ class AutoCompleteStatusCommand {
|
|
|
91
93
|
}
|
|
92
94
|
exports.AutoCompleteStatusCommand = AutoCompleteStatusCommand;
|
|
93
95
|
yok_1.injector.registerCommand("autocomplete|status", AutoCompleteStatusCommand);
|
|
96
|
+
//# sourceMappingURL=autocompletion.js.map
|
|
@@ -31,3 +31,4 @@ class OpenDeviceLogStreamCommand {
|
|
|
31
31
|
exports.OpenDeviceLogStreamCommand = OpenDeviceLogStreamCommand;
|
|
32
32
|
OpenDeviceLogStreamCommand.NOT_SPECIFIED_DEVICE_ERROR_MESSAGE = "More than one device found. Specify device explicitly.";
|
|
33
33
|
yok_1.injector.registerCommand(["device|log", "devices|log"], OpenDeviceLogStreamCommand);
|
|
34
|
+
//# sourceMappingURL=device-log-stream.js.map
|
|
@@ -25,6 +25,7 @@ class GetFileCommand {
|
|
|
25
25
|
this.$projectData.initializeProjectData();
|
|
26
26
|
}
|
|
27
27
|
catch (err) {
|
|
28
|
+
// ignore the error
|
|
28
29
|
}
|
|
29
30
|
if (!this.$projectData.projectIdentifiers) {
|
|
30
31
|
this.$errors.fail("Please enter application identifier or execute this command in project.");
|
|
@@ -41,3 +42,4 @@ class GetFileCommand {
|
|
|
41
42
|
}
|
|
42
43
|
exports.GetFileCommand = GetFileCommand;
|
|
43
44
|
yok_1.injector.registerCommand(["device|get-file", "devices|get-file"], GetFileCommand);
|
|
45
|
+
//# sourceMappingURL=get-file.js.map
|
|
@@ -92,6 +92,7 @@ class ListDevicesCommand {
|
|
|
92
92
|
"Version",
|
|
93
93
|
"Device Identifier",
|
|
94
94
|
"Image Identifier",
|
|
95
|
+
// "Error Help",
|
|
95
96
|
], []);
|
|
96
97
|
for (const info of emulators) {
|
|
97
98
|
table.push([
|
|
@@ -100,6 +101,7 @@ class ListDevicesCommand {
|
|
|
100
101
|
info.version,
|
|
101
102
|
info.identifier || "",
|
|
102
103
|
info.imageIdentifier || "",
|
|
104
|
+
// info.errorHelp || "",
|
|
103
105
|
]);
|
|
104
106
|
}
|
|
105
107
|
this.$logger.info(table.toString());
|
|
@@ -133,3 +135,4 @@ class ListiOSDevicesCommand {
|
|
|
133
135
|
}
|
|
134
136
|
}
|
|
135
137
|
yok_1.injector.registerCommand(["device|ios", "devices|ios"], ListiOSDevicesCommand);
|
|
138
|
+
//# sourceMappingURL=list-devices.js.map
|
|
@@ -26,6 +26,7 @@ class ListFilesCommand {
|
|
|
26
26
|
this.$projectData.initializeProjectData();
|
|
27
27
|
}
|
|
28
28
|
catch (err) {
|
|
29
|
+
// ignore the error
|
|
29
30
|
}
|
|
30
31
|
if (!this.$projectData.projectIdentifiers) {
|
|
31
32
|
this.$errors.fail("Please enter application identifier or execute this command in project.");
|
|
@@ -42,3 +43,4 @@ class ListFilesCommand {
|
|
|
42
43
|
}
|
|
43
44
|
exports.ListFilesCommand = ListFilesCommand;
|
|
44
45
|
yok_1.injector.registerCommand(["device|list-files", "devices|list-files"], ListFilesCommand);
|
|
46
|
+
//# sourceMappingURL=list-files.js.map
|
|
@@ -26,6 +26,7 @@ class PutFileCommand {
|
|
|
26
26
|
this.$projectData.initializeProjectData();
|
|
27
27
|
}
|
|
28
28
|
catch (err) {
|
|
29
|
+
// ignore the error
|
|
29
30
|
}
|
|
30
31
|
if (!this.$projectData.projectIdentifiers) {
|
|
31
32
|
this.$errors.fail("Please enter application identifier or execute this command in project.");
|
|
@@ -42,3 +43,4 @@ class PutFileCommand {
|
|
|
42
43
|
}
|
|
43
44
|
exports.PutFileCommand = PutFileCommand;
|
|
44
45
|
yok_1.injector.registerCommand(["device|put-file", "devices|put-file"], PutFileCommand);
|
|
46
|
+
//# sourceMappingURL=put-file.js.map
|
|
@@ -29,7 +29,7 @@ class DoctorIosCommand {
|
|
|
29
29
|
trackResult: false,
|
|
30
30
|
projectDir: this.$projectHelper.projectDir,
|
|
31
31
|
forceCheck: true,
|
|
32
|
-
platform: "ios"
|
|
32
|
+
platform: "ios" /* PlatformTypes.ios */,
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
35
|
}
|
|
@@ -46,9 +46,10 @@ class DoctorAndroidCommand {
|
|
|
46
46
|
trackResult: false,
|
|
47
47
|
projectDir: this.$projectHelper.projectDir,
|
|
48
48
|
forceCheck: true,
|
|
49
|
-
platform: "android"
|
|
49
|
+
platform: "android" /* PlatformTypes.android */,
|
|
50
50
|
});
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
exports.DoctorAndroidCommand = DoctorAndroidCommand;
|
|
54
54
|
yok_1.injector.registerCommand("doctor|android", DoctorAndroidCommand);
|
|
55
|
+
//# sourceMappingURL=doctor.js.map
|
|
@@ -32,3 +32,4 @@ exports.GenerateMessages = GenerateMessages;
|
|
|
32
32
|
GenerateMessages.MESSAGES_DEFINITIONS_FILE_NAME = "messages.interface.d.ts";
|
|
33
33
|
GenerateMessages.MESSAGES_IMPLEMENTATION_FILE_NAME = "messages.ts";
|
|
34
34
|
yok_1.injector.registerCommand("dev-generate-messages", GenerateMessages);
|
|
35
|
+
//# sourceMappingURL=generate-messages.js.map
|
|
@@ -6,12 +6,16 @@ const helpers_1 = require("../helpers");
|
|
|
6
6
|
const constants_1 = require("../../constants");
|
|
7
7
|
const yok_1 = require("../yok");
|
|
8
8
|
class PreUninstallCommand {
|
|
9
|
-
constructor($analyticsService, $extensibilityService, $fs,
|
|
9
|
+
constructor($analyticsService, $extensibilityService, $fs,
|
|
10
|
+
// private $opener: IOpener,
|
|
11
|
+
$packageInstallationManager, $settingsService) {
|
|
10
12
|
this.$analyticsService = $analyticsService;
|
|
11
13
|
this.$extensibilityService = $extensibilityService;
|
|
12
14
|
this.$fs = $fs;
|
|
13
15
|
this.$packageInstallationManager = $packageInstallationManager;
|
|
14
16
|
this.$settingsService = $settingsService;
|
|
17
|
+
// disabled for now (6/24/2020)
|
|
18
|
+
// private static FEEDBACK_FORM_URL = "https://www.nativescript.org/uninstall-feedback";
|
|
15
19
|
this.allowedParameters = [];
|
|
16
20
|
}
|
|
17
21
|
async execute(args) {
|
|
@@ -24,7 +28,7 @@ class PreUninstallCommand {
|
|
|
24
28
|
/^unlink$/,
|
|
25
29
|
]);
|
|
26
30
|
await this.$analyticsService.trackEventActionInGoogleAnalytics({
|
|
27
|
-
action: "Uninstall CLI"
|
|
31
|
+
action: "Uninstall CLI" /* TrackActionNames.UninstallCLI */,
|
|
28
32
|
additionalData: `isIntentionalUninstall${constants_1.AnalyticsEventLabelDelimiter}${isIntentionalUninstall}${constants_1.AnalyticsEventLabelDelimiter}isInteractive${constants_1.AnalyticsEventLabelDelimiter}${!!(0, helpers_1.isInteractive)()}`,
|
|
29
33
|
});
|
|
30
34
|
if (isIntentionalUninstall) {
|
|
@@ -39,8 +43,13 @@ class PreUninstallCommand {
|
|
|
39
43
|
await this.handleFeedbackForm();
|
|
40
44
|
}
|
|
41
45
|
async handleFeedbackForm() {
|
|
46
|
+
// disabled for now (6/24/2020)
|
|
47
|
+
// if (isInteractive()) {
|
|
48
|
+
// this.$opener.open(PreUninstallCommand.FEEDBACK_FORM_URL);
|
|
49
|
+
// }
|
|
42
50
|
return Promise.resolve();
|
|
43
51
|
}
|
|
44
52
|
}
|
|
45
53
|
exports.PreUninstallCommand = PreUninstallCommand;
|
|
46
54
|
yok_1.injector.registerCommand("dev-preuninstall", PreUninstallCommand);
|
|
55
|
+
//# sourceMappingURL=preuninstall.js.map
|
|
@@ -12,7 +12,10 @@ class ProxyCommandBase {
|
|
|
12
12
|
}
|
|
13
13
|
async tryTrackUsage() {
|
|
14
14
|
try {
|
|
15
|
+
// TODO(Analytics): Check why we have set the `disableAnalytics` to true and we track the command as separate one
|
|
16
|
+
// instead of tracking it through the commandsService.
|
|
15
17
|
this.$logger.trace(this.commandName);
|
|
18
|
+
// await this.$analyticsService.trackFeature(this.commandName);
|
|
16
19
|
}
|
|
17
20
|
catch (ex) {
|
|
18
21
|
this.$logger.trace("Error in trying to track proxy command usage:");
|
|
@@ -21,3 +24,4 @@ class ProxyCommandBase {
|
|
|
21
24
|
}
|
|
22
25
|
}
|
|
23
26
|
exports.ProxyCommandBase = ProxyCommandBase;
|
|
27
|
+
//# sourceMappingURL=proxy-base.js.map
|
package/lib/common/common-lib.js
CHANGED
package/lib/common/constants.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.SOCKET_CONNECTION_TIMEOUT_MS = exports.AndroidVirtualDevice = exports.ATTACH_REQUEST_EVENT_NAME = exports.DEBUGGER_PORT_FOUND_EVENT_NAME = exports.DEFAULT_CHUNK_SIZE = exports.HttpProtocolToPort = exports.HttpStatusCodes = exports.Proxy = exports.IOS_RELAY_NOTIFICATION_COMMAND_TYPE = exports.IOS_OBSERVE_NOTIFICATION_COMMAND_TYPE = exports.IOS_POST_NOTIFICATION_COMMAND_TYPE = exports.FileExtensions = exports.TNS_CORE_MODULES = exports.NODE_MODULES_DIR_NAME = exports.Configurations = exports.TARGET_FRAMEWORK_IDENTIFIERS = exports.FAIL_LIVESYNC_LOG_REGEX = exports.IOS_APP_CRASH_LOG_REG_EXP = exports.IOS_LOG_PREDICATE = exports.DEVICE_LOG_EVENT_NAME = exports.EmulatorDiscoveryNames = exports.DeviceDiscoveryEventNames = exports.HmrConstants = exports.LiveSyncPaths = exports.APPLE_VENDOR_NAME = exports.NOT_RUNNING_EMULATOR_STATUS = exports.RUNNING_EMULATOR_STATUS = exports.CONNECTED_STATUS = exports.UNREACHABLE_STATUS = exports.ERROR_NO_VALID_SUBCOMMAND_FORMAT = exports.ERROR_CANNOT_RESOLVE_DEVICE = exports.ERROR_NO_DEVICES_CANT_USE_IOS_SIMULATOR = exports.ERROR_CANT_USE_SIMULATOR = exports.ERROR_NO_DEVICES = exports.APP_RESOURCES_FOLDER_NAME = exports.DeviceTypes = exports.ProvisionType = void 0;
|
|
4
|
+
// enumeration taken from ProvisionType.cs
|
|
4
5
|
class ProvisionType {
|
|
5
6
|
}
|
|
6
7
|
exports.ProvisionType = ProvisionType;
|
|
@@ -82,6 +83,9 @@ Proxy.CACHE_FILE_NAME = "proxy-cache.json";
|
|
|
82
83
|
Proxy.USE_PROXY = "USE_PROXY";
|
|
83
84
|
Proxy.PROXY_PORT = "PROXY_PORT";
|
|
84
85
|
Proxy.PROXY_HOSTNAME = "PROXY_HOSTNAME";
|
|
86
|
+
/**
|
|
87
|
+
* Http status codes available from `require("http").STATUS_CODES`.
|
|
88
|
+
*/
|
|
85
89
|
class HttpStatusCodes {
|
|
86
90
|
}
|
|
87
91
|
exports.HttpStatusCodes = HttpStatusCodes;
|
|
@@ -107,7 +111,13 @@ AndroidVirtualDevice.INI_FILES_MASK = /^(.*)\.ini$/i;
|
|
|
107
111
|
AndroidVirtualDevice.AVD_FILES_MASK = /^(.*)\.avd$/i;
|
|
108
112
|
AndroidVirtualDevice.MIN_ANDROID_APILEVEL = 17;
|
|
109
113
|
AndroidVirtualDevice.MIN_ANDROID_VERSION = "4.2";
|
|
114
|
+
/**
|
|
115
|
+
* The message that is printed from `avdmanager list avds`
|
|
116
|
+
*/
|
|
110
117
|
AndroidVirtualDevice.AVAILABLE_AVDS_MESSAGE = "Available Android Virtual Devices:";
|
|
118
|
+
/**
|
|
119
|
+
* The delimiter between devices that is used from `avdmanager list avds`
|
|
120
|
+
*/
|
|
111
121
|
AndroidVirtualDevice.AVD_LIST_DELIMITER = "---------";
|
|
112
122
|
AndroidVirtualDevice.CONFIG_INI_FILE_NAME = "config.ini";
|
|
113
123
|
AndroidVirtualDevice.INI_FILE_EXTENSION = ".ini";
|
|
@@ -120,3 +130,4 @@ AndroidVirtualDevice.TIMEOUT_SECONDS = 120;
|
|
|
120
130
|
AndroidVirtualDevice.GENYMOTION_DEFAULT_STDERR_STRING = "Logging activities to file";
|
|
121
131
|
AndroidVirtualDevice.UNABLE_TO_START_EMULATOR_MESSAGE = "Cannot run the app in the selected native emulator. Try to restart the adb server by running the `adb kill-server` command in the Command Prompt, or increase the allocated RAM of the virtual device through the Android Virtual Device manager. NativeScript CLI users can try to increase the timeout of the operation by adding the `--timeout` flag.";
|
|
122
132
|
exports.SOCKET_CONNECTION_TIMEOUT_MS = 30000;
|
|
133
|
+
//# sourceMappingURL=constants.js.map
|