nativescript 8.9.3 → 8.9.4-sap.0

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.
Files changed (326) hide show
  1. package/lib/android-tools-info.js +12 -0
  2. package/lib/base-package-manager.js +7 -0
  3. package/lib/bootstrap.js +5 -1
  4. package/lib/bun-package-manager.js +14 -1
  5. package/lib/color.js +3 -0
  6. package/lib/commands/add-platform.js +1 -0
  7. package/lib/commands/apple-login.js +1 -0
  8. package/lib/commands/appstore-list.js +1 -0
  9. package/lib/commands/appstore-upload.js +3 -0
  10. package/lib/commands/build.js +3 -2
  11. package/lib/commands/clean.js +22 -1
  12. package/lib/commands/command-base.js +1 -0
  13. package/lib/commands/config.js +4 -0
  14. package/lib/commands/create-project.js +6 -0
  15. package/lib/commands/debug.js +6 -1
  16. package/lib/commands/deploy.js +3 -2
  17. package/lib/commands/embedding/embed.js +7 -0
  18. package/lib/commands/extensibility/install-extension.js +1 -0
  19. package/lib/commands/extensibility/list-extensions.js +1 -0
  20. package/lib/commands/extensibility/uninstall-extension.js +1 -0
  21. package/lib/commands/fonts.js +1 -0
  22. package/lib/commands/generate-assets.js +1 -0
  23. package/lib/commands/generate-help.js +1 -0
  24. package/lib/commands/generate.js +48 -1
  25. package/lib/commands/info.js +1 -0
  26. package/lib/commands/install.js +1 -0
  27. package/lib/commands/list-platforms.js +1 -0
  28. package/lib/commands/migrate.js +1 -0
  29. package/lib/commands/native-add.js +5 -0
  30. package/lib/commands/platform-clean.js +1 -0
  31. package/lib/commands/plugin/add-plugin.js +1 -0
  32. package/lib/commands/plugin/build-plugin.js +1 -0
  33. package/lib/commands/plugin/create-plugin.js +5 -0
  34. package/lib/commands/plugin/list-plugins.js +1 -0
  35. package/lib/commands/plugin/remove-plugin.js +2 -0
  36. package/lib/commands/plugin/update-plugin.js +1 -0
  37. package/lib/commands/post-install.js +6 -0
  38. package/lib/commands/prepare.js +4 -3
  39. package/lib/commands/preview.js +2 -0
  40. package/lib/commands/remove-platform.js +1 -0
  41. package/lib/commands/resources/resources-update.js +2 -0
  42. package/lib/commands/run.js +1 -0
  43. package/lib/commands/setup.js +1 -0
  44. package/lib/commands/start.js +1 -0
  45. package/lib/commands/test-init.js +4 -0
  46. package/lib/commands/test.js +9 -2
  47. package/lib/commands/typings.js +2 -1
  48. package/lib/commands/update-platform.js +5 -0
  49. package/lib/commands/update.js +2 -0
  50. package/lib/commands/widget.js +20 -1
  51. package/lib/common/bootstrap.js +1 -0
  52. package/lib/common/child-process.js +3 -0
  53. package/lib/common/codeGeneration/code-entity.js +1 -0
  54. package/lib/common/codeGeneration/code-printer.js +1 -0
  55. package/lib/common/command-params.js +1 -0
  56. package/lib/common/commands/analytics.js +3 -0
  57. package/lib/common/commands/autocompletion.js +3 -0
  58. package/lib/common/commands/device/device-log-stream.js +1 -0
  59. package/lib/common/commands/device/get-file.js +2 -0
  60. package/lib/common/commands/device/list-applications.js +1 -0
  61. package/lib/common/commands/device/list-devices.js +3 -0
  62. package/lib/common/commands/device/list-files.js +2 -0
  63. package/lib/common/commands/device/put-file.js +2 -0
  64. package/lib/common/commands/device/run-application.js +1 -0
  65. package/lib/common/commands/device/stop-application.js +1 -0
  66. package/lib/common/commands/device/uninstall-application.js +1 -0
  67. package/lib/common/commands/doctor.js +3 -2
  68. package/lib/common/commands/generate-messages.js +1 -0
  69. package/lib/common/commands/help.js +1 -0
  70. package/lib/common/commands/package-manager-get.js +1 -0
  71. package/lib/common/commands/package-manager-set.js +1 -0
  72. package/lib/common/commands/post-install.js +1 -0
  73. package/lib/common/commands/preuninstall.js +11 -2
  74. package/lib/common/commands/proxy/proxy-base.js +4 -0
  75. package/lib/common/commands/proxy/proxy-clear.js +1 -0
  76. package/lib/common/commands/proxy/proxy-get.js +1 -0
  77. package/lib/common/commands/proxy/proxy-set.js +1 -0
  78. package/lib/common/common-lib.js +1 -0
  79. package/lib/common/constants.js +11 -0
  80. package/lib/common/decorators.js +48 -0
  81. package/lib/common/dispatchers.js +10 -1
  82. package/lib/common/errors.js +13 -3
  83. package/lib/common/file-system.js +13 -2
  84. package/lib/common/header.js +3 -0
  85. package/lib/common/helpers.js +89 -3
  86. package/lib/common/host-info.js +4 -0
  87. package/lib/common/http-client.js +20 -0
  88. package/lib/common/logger/appenders/cli-appender.js +4 -0
  89. package/lib/common/logger/appenders/emit-appender.js +4 -0
  90. package/lib/common/logger/layouts/cli-layout.js +1 -0
  91. package/lib/common/logger/logger.js +5 -0
  92. package/lib/common/messages/messages.js +6 -0
  93. package/lib/common/mobile/android/android-application-manager.js +20 -1
  94. package/lib/common/mobile/android/android-debug-bridge-result-handler.js +1 -0
  95. package/lib/common/mobile/android/android-debug-bridge.js +6 -0
  96. package/lib/common/mobile/android/android-device-file-system.js +4 -0
  97. package/lib/common/mobile/android/android-device-hash-service.js +3 -0
  98. package/lib/common/mobile/android/android-device.js +8 -0
  99. package/lib/common/mobile/android/android-emulator-services.js +3 -2
  100. package/lib/common/mobile/android/android-ini-file-parser.js +9 -0
  101. package/lib/common/mobile/android/android-log-filter.js +4 -0
  102. package/lib/common/mobile/android/android-virtual-device-service.js +26 -0
  103. package/lib/common/mobile/android/device-android-debug-bridge.js +1 -0
  104. package/lib/common/mobile/android/genymotion/genymotion-service.js +6 -1
  105. package/lib/common/mobile/android/genymotion/virtualbox-service.js +11 -0
  106. package/lib/common/mobile/android/logcat-helper.js +13 -0
  107. package/lib/common/mobile/application-manager-base.js +6 -0
  108. package/lib/common/mobile/device-emitter.js +4 -0
  109. package/lib/common/mobile/device-log-emitter.js +1 -0
  110. package/lib/common/mobile/device-log-provider-base.js +1 -0
  111. package/lib/common/mobile/device-log-provider.js +23 -0
  112. package/lib/common/mobile/device-platforms-constants.js +1 -0
  113. package/lib/common/mobile/emulator-helper.js +4 -0
  114. package/lib/common/mobile/ios/device/ios-application-manager.js +3 -0
  115. package/lib/common/mobile/ios/device/ios-device-file-system.js +1 -0
  116. package/lib/common/mobile/ios/device/ios-device-operations.js +4 -0
  117. package/lib/common/mobile/ios/device/ios-device.js +4 -0
  118. package/lib/common/mobile/ios/ios-device-base.js +1 -0
  119. package/lib/common/mobile/ios/ios-device-product-name-mapper.js +2 -0
  120. package/lib/common/mobile/ios/ios-log-filter.js +1 -0
  121. package/lib/common/mobile/ios/simulator/ios-emulator-services.js +4 -0
  122. package/lib/common/mobile/ios/simulator/ios-sim-resolver.js +1 -0
  123. package/lib/common/mobile/ios/simulator/ios-simulator-application-manager.js +6 -0
  124. package/lib/common/mobile/ios/simulator/ios-simulator-device.js +5 -0
  125. package/lib/common/mobile/ios/simulator/ios-simulator-file-system.js +1 -0
  126. package/lib/common/mobile/ios/simulator/ios-simulator-log-provider.js +1 -0
  127. package/lib/common/mobile/local-to-device-path-data-factory.js +1 -0
  128. package/lib/common/mobile/log-filter.js +2 -0
  129. package/lib/common/mobile/logging-levels.js +1 -0
  130. package/lib/common/mobile/mobile-core/android-device-discovery.js +2 -0
  131. package/lib/common/mobile/mobile-core/android-emulator-discovery.js +3 -0
  132. package/lib/common/mobile/mobile-core/android-process-service.js +32 -0
  133. package/lib/common/mobile/mobile-core/device-discovery.js +1 -0
  134. package/lib/common/mobile/mobile-core/devices-service.js +69 -0
  135. package/lib/common/mobile/mobile-core/ios-device-discovery.js +2 -0
  136. package/lib/common/mobile/mobile-core/ios-simulator-discovery.js +3 -0
  137. package/lib/common/mobile/mobile-helper.js +1 -0
  138. package/lib/common/mobile/wp8/wp8-emulator-services.js +1 -0
  139. package/lib/common/opener.js +1 -0
  140. package/lib/common/os-info.js +1 -0
  141. package/lib/common/plist-parser.js +1 -0
  142. package/lib/common/project-helper.js +1 -0
  143. package/lib/common/prompter.js +9 -1
  144. package/lib/common/queue.js +1 -0
  145. package/lib/common/resource-loader.js +1 -0
  146. package/lib/common/services/auto-completion-service.js +13 -1
  147. package/lib/common/services/cancellation.js +2 -1
  148. package/lib/common/services/commands-service.js +17 -6
  149. package/lib/common/services/help-service.js +11 -3
  150. package/lib/common/services/hooks-service.js +13 -0
  151. package/lib/common/services/ios-notification-service.js +1 -0
  152. package/lib/common/services/json-file-settings-service.js +6 -0
  153. package/lib/common/services/lock-service.js +6 -0
  154. package/lib/common/services/message-contract-generator.js +1 -0
  155. package/lib/common/services/messages-service.js +1 -0
  156. package/lib/common/services/micro-templating-service.js +6 -0
  157. package/lib/common/services/net-service.js +3 -0
  158. package/lib/common/services/project-files-manager.js +5 -0
  159. package/lib/common/services/project-files-provider-base.js +1 -0
  160. package/lib/common/services/proxy-service.js +1 -0
  161. package/lib/common/services/qr.js +1 -0
  162. package/lib/common/services/settings-service.js +1 -0
  163. package/lib/common/services/xcode-select-service.js +1 -0
  164. package/lib/common/utils.js +1 -0
  165. package/lib/common/validators/project-name-validator.js +1 -0
  166. package/lib/common/validators/validation-result.js +1 -0
  167. package/lib/common/verify-node-version.js +8 -1
  168. package/lib/common/yok.js +32 -11
  169. package/lib/config.js +22 -1
  170. package/lib/constants-provider.js +1 -0
  171. package/lib/constants.js +53 -0
  172. package/lib/controllers/build-controller.js +4 -3
  173. package/lib/controllers/debug-controller.js +8 -3
  174. package/lib/controllers/deploy-controller.js +1 -0
  175. package/lib/controllers/migrate-controller.js +90 -4
  176. package/lib/controllers/platform-controller.js +9 -1
  177. package/lib/controllers/prepare-controller.js +17 -4
  178. package/lib/controllers/run-controller.js +17 -1
  179. package/lib/controllers/update-controller-base.js +1 -0
  180. package/lib/controllers/update-controller.js +11 -0
  181. package/lib/data/build-data.js +1 -0
  182. package/lib/data/controller-data-base.js +1 -0
  183. package/lib/data/debug-data.js +1 -0
  184. package/lib/data/platform-data.js +1 -0
  185. package/lib/data/prepare-data.js +1 -0
  186. package/lib/data/run-data.js +1 -0
  187. package/lib/detached-processes/cleanup-js-subprocess.js +8 -2
  188. package/lib/detached-processes/cleanup-process.js +18 -14
  189. package/lib/detached-processes/file-log-service.js +2 -1
  190. package/lib/device-path-provider.js +1 -0
  191. package/lib/device-sockets/ios/app-debug-socket-proxy-factory.js +7 -0
  192. package/lib/device-sockets/ios/notification.js +3 -0
  193. package/lib/device-sockets/ios/socket-request-executor.js +3 -0
  194. package/lib/helpers/android-bundle-validator-helper.js +2 -1
  195. package/lib/helpers/deploy-command-helper.js +1 -0
  196. package/lib/helpers/key-command-helper.js +4 -2
  197. package/lib/helpers/livesync-command-helper.js +4 -1
  198. package/lib/helpers/network-connectivity-validator.js +1 -0
  199. package/lib/helpers/options-track-helper.js +3 -2
  200. package/lib/helpers/package-path-helper.js +1 -0
  201. package/lib/helpers/platform-command-helper.js +7 -2
  202. package/lib/helpers/version-validator-helper.js +1 -0
  203. package/lib/key-commands/bootstrap.js +3 -2
  204. package/lib/key-commands/index.js +5 -4
  205. package/lib/nativescript-cli-lib-bootstrap.js +4 -0
  206. package/lib/nativescript-cli-lib.js +1 -0
  207. package/lib/nativescript-cli.js +10 -1
  208. package/lib/node/pbxproj-dom-xcode.js +1 -0
  209. package/lib/node/xcode.js +1 -0
  210. package/lib/node-package-manager.js +11 -1
  211. package/lib/options.js +144 -119
  212. package/lib/package-installation-manager.js +8 -1
  213. package/lib/package-manager.js +2 -0
  214. package/lib/platform-command-param.js +1 -0
  215. package/lib/pnpm-package-manager.js +4 -1
  216. package/lib/project-data.js +12 -0
  217. package/lib/providers/project-files-provider.js +1 -0
  218. package/lib/resolvers/livesync-service-resolver.js +1 -0
  219. package/lib/services/analytics/analytics-broker-process.js +10 -6
  220. package/lib/services/analytics/analytics-broker.js +2 -1
  221. package/lib/services/analytics/analytics-service.js +29 -25
  222. package/lib/services/analytics/google-analytics-provider.js +13 -12
  223. package/lib/services/analytics-settings-service.js +5 -0
  224. package/lib/services/android/android-bundle-tool-service.js +1 -0
  225. package/lib/services/android/gradle-build-args-service.js +3 -0
  226. package/lib/services/android/gradle-build-service.js +1 -0
  227. package/lib/services/android/gradle-command-service.js +1 -0
  228. package/lib/services/android-device-debug-service.js +6 -0
  229. package/lib/services/android-plugin-build-service.js +31 -2
  230. package/lib/services/android-project-service.js +71 -4
  231. package/lib/services/android-resources-migration-service.js +7 -0
  232. package/lib/services/apple-portal/apple-portal-application-service.js +1 -0
  233. package/lib/services/apple-portal/apple-portal-cookie-service.js +1 -0
  234. package/lib/services/apple-portal/apple-portal-session-service.js +6 -4
  235. package/lib/services/apple-portal/srp/srp-wrapper.js +4 -1
  236. package/lib/services/assets-generation/assets-generation-service.js +10 -5
  237. package/lib/services/build-artifacts-service.js +2 -1
  238. package/lib/services/build-data-service.js +1 -0
  239. package/lib/services/build-info-file-service.js +1 -0
  240. package/lib/services/cleanup-service.js +13 -9
  241. package/lib/services/cocoapods-platform-manager.js +9 -0
  242. package/lib/services/cocoapods-service.js +21 -1
  243. package/lib/services/debug-data-service.js +1 -0
  244. package/lib/services/debug-service-base.js +7 -0
  245. package/lib/services/device/device-install-app-service.js +2 -1
  246. package/lib/services/doctor-service.js +21 -6
  247. package/lib/services/extensibility-service.js +8 -0
  248. package/lib/services/files-hash-service.js +1 -0
  249. package/lib/services/hmr-status-service.js +2 -0
  250. package/lib/services/info-service.js +1 -0
  251. package/lib/services/initialize-service.js +5 -1
  252. package/lib/services/ios/export-options-plist-service.js +4 -0
  253. package/lib/services/ios/ios-signing-service.js +4 -0
  254. package/lib/services/ios/spm-service.js +11 -0
  255. package/lib/services/ios/xcodebuild-args-service.js +9 -0
  256. package/lib/services/ios/xcodebuild-command-service.js +1 -0
  257. package/lib/services/ios/xcodebuild-service.js +2 -1
  258. package/lib/services/ios-debugger-port-service.js +1 -0
  259. package/lib/services/ios-device-debug-service.js +1 -0
  260. package/lib/services/ios-entitlements-service.js +1 -0
  261. package/lib/services/ios-extensions-service.js +1 -0
  262. package/lib/services/ios-log-filter.js +20 -0
  263. package/lib/services/ios-native-target-service.js +6 -4
  264. package/lib/services/ios-project-service.js +91 -1
  265. package/lib/services/ios-provision-service.js +3 -0
  266. package/lib/services/ios-watch-app-service.js +1 -0
  267. package/lib/services/ip-service.js +2 -0
  268. package/lib/services/itmstransporter-service.js +1 -0
  269. package/lib/services/karma-execution.js +2 -0
  270. package/lib/services/livesync/android-device-livesync-service-base.js +1 -0
  271. package/lib/services/livesync/android-device-livesync-service.js +2 -0
  272. package/lib/services/livesync/android-device-livesync-sockets-service.js +3 -0
  273. package/lib/services/livesync/android-livesync-service.js +1 -0
  274. package/lib/services/livesync/android-livesync-tool.js +4 -0
  275. package/lib/services/livesync/device-livesync-service-base.js +2 -0
  276. package/lib/services/livesync/ios-device-livesync-service.js +7 -0
  277. package/lib/services/livesync/ios-livesync-service.js +2 -0
  278. package/lib/services/livesync/livesync-socket.js +1 -0
  279. package/lib/services/livesync/platform-livesync-service-base.js +5 -0
  280. package/lib/services/livesync-process-data-service.js +1 -0
  281. package/lib/services/log-parser-service.js +1 -0
  282. package/lib/services/log-source-map-service.js +15 -0
  283. package/lib/services/marking-mode-service.js +8 -5
  284. package/lib/services/metadata-filtering-service.js +1 -0
  285. package/lib/services/npm-config-service.js +4 -0
  286. package/lib/services/pacote-service.js +7 -0
  287. package/lib/services/performance-service.js +3 -1
  288. package/lib/services/platform/add-platform-service.js +49 -2
  289. package/lib/services/platform/platform-validation-service.js +1 -0
  290. package/lib/services/platform/prepare-native-platform-service.js +5 -2
  291. package/lib/services/platform-environment-requirements.js +8 -3
  292. package/lib/services/platform-project-service-base.js +1 -0
  293. package/lib/services/platforms-data-service.js +1 -0
  294. package/lib/services/plugins-service.js +20 -2
  295. package/lib/services/prepare-data-service.js +1 -0
  296. package/lib/services/project-backup-service.js +4 -0
  297. package/lib/services/project-changes-service.js +14 -3
  298. package/lib/services/project-cleanup-service.js +2 -0
  299. package/lib/services/project-config-service.js +21 -2
  300. package/lib/services/project-data-service.js +36 -7
  301. package/lib/services/project-name-service.js +1 -0
  302. package/lib/services/project-service.js +10 -0
  303. package/lib/services/project-templates-service.js +3 -2
  304. package/lib/services/qr-code-terminal-service.js +1 -0
  305. package/lib/services/require-service.js +1 -0
  306. package/lib/services/start-service.js +1 -0
  307. package/lib/services/temp-service.js +1 -0
  308. package/lib/services/terminal-spinner-service.js +2 -0
  309. package/lib/services/test-execution-service.js +9 -2
  310. package/lib/services/test-initialization-service.js +4 -0
  311. package/lib/services/timeline-profiler-service.js +1 -0
  312. package/lib/services/user-settings-service.js +1 -0
  313. package/lib/services/versions-service.js +6 -4
  314. package/lib/services/watch-ignore-list-service.js +1 -0
  315. package/lib/services/webpack/webpack-compiler-service.js +40 -0
  316. package/lib/services/xcconfig-service.js +2 -0
  317. package/lib/services/xcproj-service.js +1 -0
  318. package/lib/shared-event-bus.js +6 -0
  319. package/lib/sys-info.js +2 -1
  320. package/lib/tools/config-manipulation/config-transformer.js +12 -0
  321. package/lib/tools/node-modules/node-modules-builder.js +1 -0
  322. package/lib/tools/node-modules/node-modules-dependencies-builder.js +6 -0
  323. package/lib/yarn-package-manager.js +1 -0
  324. package/lib/yarn2-package-manager.js +3 -0
  325. package/package.json +8 -6
  326. package/vendor/gradle-plugin/build.gradle +3 -3
@@ -55,6 +55,7 @@ class ConfigTransformer {
55
55
  const parts = key.split(".");
56
56
  const name = parts.shift();
57
57
  const property = this.getProperty(name, parent);
58
+ // no android key, add it to parent to root
58
59
  if (!property) {
59
60
  return undefined;
60
61
  }
@@ -64,11 +65,14 @@ class ConfigTransformer {
64
65
  if (!_parent) {
65
66
  return undefined;
66
67
  }
68
+ // add nonExistent.deep to android: {}
67
69
  return this.getProperty(parts.join("."), _parent);
68
70
  }
71
+ // if we have a parent, we are reading the property from it
69
72
  if (parent) {
70
73
  return parent.getProperty(key);
71
74
  }
75
+ // otherwise we just read it from the root exports object
72
76
  return this.getProperty(key, this.getDefaultExportValue());
73
77
  }
74
78
  addProperty(key, value, parent = null) {
@@ -190,15 +194,22 @@ class ConfigTransformer {
190
194
  }
191
195
  this.setInitializerValue(initializer, newValue);
192
196
  }
197
+ /**
198
+ * @internal
199
+ */
193
200
  getFullText() {
194
201
  return this.config.getFullText();
195
202
  }
203
+ /**
204
+ * @internal
205
+ */
196
206
  getValue(key) {
197
207
  return this.getPropertyValue(this.getProperty(key));
198
208
  }
199
209
  setValue(key, value) {
200
210
  const property = this.getProperty(key);
201
211
  if (!property) {
212
+ // add new property
202
213
  this.addProperty(key, value);
203
214
  }
204
215
  else {
@@ -208,3 +219,4 @@ class ConfigTransformer {
208
219
  }
209
220
  }
210
221
  exports.ConfigTransformer = ConfigTransformer;
222
+ //# sourceMappingURL=config-transformer.js.map
@@ -29,3 +29,4 @@ class NodeModulesBuilder {
29
29
  }
30
30
  exports.NodeModulesBuilder = NodeModulesBuilder;
31
31
  yok_1.injector.register("nodeModulesBuilder", NodeModulesBuilder);
32
+ //# sourceMappingURL=node-modules-builder.js.map
@@ -56,14 +56,18 @@ class NodeModulesDependenciesBuilder {
56
56
  let modulePath = (0, resolve_package_path_1.resolvePackagePath)(depDescription.name, {
57
57
  paths: [parentModulesPath],
58
58
  });
59
+ // perhaps traverse up the tree here?
59
60
  if (!modulePath) {
61
+ // fallback to searching in the root path
60
62
  modulePath = (0, resolve_package_path_1.resolvePackagePath)(depDescription.name, {
61
63
  paths: [rootPath],
62
64
  });
63
65
  }
66
+ // if we failed to find the module...
64
67
  if (!modulePath) {
65
68
  return null;
66
69
  }
70
+ // if we already resolved this dependency, we return null to avoid a duplicate resolution
67
71
  if (resolvedDependencies.some((r) => {
68
72
  return r.name === depDescription.name && r.directory === modulePath;
69
73
  })) {
@@ -88,6 +92,7 @@ class NodeModulesDependenciesBuilder {
88
92
  const packageJsonContents = this.$fs.readJson(packageJsonPath);
89
93
  dependency.version = packageJsonContents.version;
90
94
  if (!!packageJsonContents.nativescript) {
95
+ // add `nativescript` property, necessary for resolving plugins
91
96
  dependency.nativescript = packageJsonContents.nativescript;
92
97
  }
93
98
  dependency.dependencies = _.keys(packageJsonContents.dependencies);
@@ -98,3 +103,4 @@ class NodeModulesDependenciesBuilder {
98
103
  }
99
104
  exports.NodeModulesDependenciesBuilder = NodeModulesDependenciesBuilder;
100
105
  yok_1.injector.register("nodeModulesDependenciesBuilder", NodeModulesDependenciesBuilder);
106
+ //# sourceMappingURL=node-modules-dependencies-builder.js.map
@@ -113,3 +113,4 @@ __decorate([
113
113
  (0, decorators_1.exported)("yarn")
114
114
  ], YarnPackageManager.prototype, "getCachePath", null);
115
115
  yok_1.injector.register("yarn", YarnPackageManager);
116
+ //# sourceMappingURL=yarn-package-manager.js.map
@@ -36,6 +36,8 @@ class Yarn2PackageManager extends base_package_manager_1.BasePackageManager {
36
36
  }
37
37
  const packageJsonPath = path.join(pathToSave, "package.json");
38
38
  const jsonContentBefore = this.$fs.readJson(packageJsonPath);
39
+ // remove unsupported flags
40
+ // todo: refactor all package managers to map typed flags to the actual flags
39
41
  const cleanedConfig = _.omit(config, ["save-dev", "save-exact"]);
40
42
  const flags = this.getFlagsString(cleanedConfig, true);
41
43
  let params = [];
@@ -122,3 +124,4 @@ __decorate([
122
124
  (0, decorators_1.exported)("yarn2")
123
125
  ], Yarn2PackageManager.prototype, "getCachePath", null);
124
126
  yok_1.injector.register("yarn2", Yarn2PackageManager);
127
+ //# sourceMappingURL=yarn2-package-manager.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nativescript",
3
3
  "main": "./lib/nativescript-cli-lib.js",
4
- "version": "8.9.3",
4
+ "version": "8.9.4-sap.0",
5
5
  "author": "NativeScript <oss@nativescript.org>",
6
6
  "description": "Command-line interface for building NativeScript projects",
7
7
  "bin": {
@@ -28,7 +28,7 @@
28
28
  "preuninstall.js"
29
29
  ],
30
30
  "scripts": {
31
- "clean": "npx rimraf node_modules && npm run setup",
31
+ "clean": "npx rimraf node_modules package-lock.json && npm run setup",
32
32
  "build": "grunt",
33
33
  "build.all": "grunt test",
34
34
  "dev": "tsc --watch",
@@ -61,7 +61,7 @@
61
61
  "@rigor789/trapezedev-project": "7.1.2",
62
62
  "ansi-colors": "^4.1.3",
63
63
  "archiver": "^7.0.1",
64
- "axios": "1.7.9",
64
+ "axios": "1.11.0",
65
65
  "byline": "5.0.0",
66
66
  "chalk": "4.1.2",
67
67
  "chokidar": "4.0.3",
@@ -75,7 +75,7 @@
75
75
  "glob": "11.0.1",
76
76
  "ios-device-lib": "0.9.4",
77
77
  "ios-mobileprovision-finder": "1.2.1",
78
- "ios-sim-portable": "4.5.0",
78
+ "ios-sim-portable": "4.5.1",
79
79
  "jimp": "1.6.0",
80
80
  "lodash": "4.17.21",
81
81
  "log4js": "6.9.1",
@@ -144,6 +144,7 @@
144
144
  "@types/ws": "8.5.14",
145
145
  "@types/xml2js": "0.4.14",
146
146
  "@types/yargs": "17.0.33",
147
+ "braces": ">=3.0.3",
147
148
  "chai": "5.2.0",
148
149
  "chai-as-promised": "8.0.1",
149
150
  "conventional-changelog-cli": "^5.0.0",
@@ -160,7 +161,8 @@
160
161
  "lint-staged": "~15.4.3",
161
162
  "mocha": "11.1.0",
162
163
  "sinon": "19.0.2",
163
- "source-map-support": "0.5.21"
164
+ "source-map-support": "0.5.21",
165
+ "xml2js": ">=0.5.0"
164
166
  },
165
167
  "optionalDependencies": {
166
168
  "fsevents": "*"
@@ -181,4 +183,4 @@
181
183
  "lint-staged": {
182
184
  "*.ts": "prettier --write"
183
185
  }
184
- }
186
+ }
@@ -159,10 +159,10 @@ allprojects {
159
159
  }
160
160
 
161
161
 
162
- def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? compileSdk : 34 }
163
- def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? targetSdk : 34 as int }
162
+ def computeCompileSdkVersion = { -> project.hasProperty("compileSdk") ? compileSdk : 35 }
163
+ def computeTargetSdkVersion = { -> project.hasProperty("targetSdk") ? targetSdk : 35 as int }
164
164
  def computeBuildToolsVersion = { ->
165
- project.hasProperty("buildToolsVersion") ? buildToolsVersion : "34.0.0"
165
+ project.hasProperty("buildToolsVersion") ? buildToolsVersion : "35.0.1"
166
166
  }
167
167
 
168
168
  android {