nativescript 9.1.0-alpha.15 → 9.1.0-alpha.17

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 (946) hide show
  1. package/CHANGELOG.md +2571 -0
  2. package/bin/tns +65 -1
  3. package/config/config.json +2 -1
  4. package/config/test-deps-versions-generated.json +1 -1
  5. package/contracts/package.json +4 -0
  6. package/docs/build-jekyll-md.sh +1 -1
  7. package/docs/man_pages/config/config-set.md +2 -0
  8. package/docs/man_pages/project/testing/build-android.md +1 -1
  9. package/lib/android-tools-info.d.ts +19 -0
  10. package/lib/android-tools-info.js +0 -12
  11. package/lib/base-package-manager.d.ts +28 -0
  12. package/lib/base-package-manager.js +0 -7
  13. package/lib/bootstrap.js +3 -6
  14. package/lib/bun-package-manager.d.ts +16 -0
  15. package/lib/bun-package-manager.js +1 -14
  16. package/lib/color.d.ts +39 -0
  17. package/lib/color.js +0 -4
  18. package/lib/commands/add-platform.d.ts +14 -0
  19. package/lib/commands/add-platform.js +0 -1
  20. package/lib/commands/apple-login.d.ts +14 -0
  21. package/lib/commands/apple-login.js +0 -1
  22. package/lib/commands/appstore-list.d.ts +21 -0
  23. package/lib/commands/appstore-list.js +0 -1
  24. package/lib/commands/appstore-upload.d.ts +25 -0
  25. package/lib/commands/appstore-upload.js +0 -3
  26. package/lib/commands/build.d.ts +58 -0
  27. package/lib/commands/build.js +3 -3
  28. package/lib/commands/clean.d.ts +21 -0
  29. package/lib/commands/clean.js +1 -22
  30. package/lib/commands/command-base.d.ts +16 -0
  31. package/lib/commands/command-base.js +0 -1
  32. package/lib/commands/config.d.ts +30 -0
  33. package/lib/commands/config.js +0 -5
  34. package/lib/commands/create-project.d.ts +42 -0
  35. package/lib/commands/create-project.js +0 -6
  36. package/lib/commands/debug.d.ts +53 -0
  37. package/lib/commands/debug.js +2 -6
  38. package/lib/commands/deploy.d.ts +32 -0
  39. package/lib/commands/deploy.js +3 -3
  40. package/lib/commands/embedding/embed.d.ts +27 -0
  41. package/lib/commands/embedding/embed.js +0 -7
  42. package/lib/commands/extensibility/install-extension.d.ts +10 -0
  43. package/lib/commands/extensibility/install-extension.js +0 -1
  44. package/lib/commands/extensibility/list-extensions.d.ts +9 -0
  45. package/lib/commands/extensibility/list-extensions.js +0 -1
  46. package/lib/commands/extensibility/uninstall-extension.d.ts +10 -0
  47. package/lib/commands/extensibility/uninstall-extension.js +0 -1
  48. package/lib/commands/fonts.d.ts +12 -0
  49. package/lib/commands/fonts.js +0 -1
  50. package/lib/commands/generate-assets.d.ts +29 -0
  51. package/lib/commands/generate-assets.js +0 -1
  52. package/lib/commands/generate-help.d.ts +8 -0
  53. package/lib/commands/generate-help.js +0 -1
  54. package/lib/commands/generate.d.ts +12 -0
  55. package/lib/commands/generate.js +1 -48
  56. package/lib/commands/hooks/common.d.ts +22 -0
  57. package/lib/commands/hooks/common.js +1 -2
  58. package/lib/commands/hooks/hooks-lock.d.ts +24 -0
  59. package/lib/commands/hooks/hooks-lock.js +0 -1
  60. package/lib/commands/hooks/hooks.d.ts +17 -0
  61. package/lib/commands/hooks/hooks.js +0 -1
  62. package/lib/commands/info.d.ts +8 -0
  63. package/lib/commands/info.js +0 -1
  64. package/lib/commands/install.d.ts +25 -0
  65. package/lib/commands/install.js +0 -1
  66. package/lib/commands/list-platforms.d.ts +11 -0
  67. package/lib/commands/list-platforms.js +0 -1
  68. package/lib/commands/migrate.d.ts +13 -0
  69. package/lib/commands/migrate.js +0 -1
  70. package/lib/commands/native-add.d.ts +49 -0
  71. package/lib/commands/native-add.js +0 -5
  72. package/lib/commands/platform-clean.d.ts +17 -0
  73. package/lib/commands/platform-clean.js +0 -1
  74. package/lib/commands/plugin/add-plugin.d.ts +13 -0
  75. package/lib/commands/plugin/add-plugin.js +0 -1
  76. package/lib/commands/plugin/build-plugin.d.ts +18 -0
  77. package/lib/commands/plugin/build-plugin.js +0 -1
  78. package/lib/commands/plugin/create-plugin.d.ts +30 -0
  79. package/lib/commands/plugin/create-plugin.js +0 -5
  80. package/lib/commands/plugin/list-plugins.d.ts +12 -0
  81. package/lib/commands/plugin/list-plugins.js +0 -1
  82. package/lib/commands/plugin/remove-plugin.d.ts +14 -0
  83. package/lib/commands/plugin/remove-plugin.js +0 -2
  84. package/lib/commands/plugin/update-plugin.d.ts +13 -0
  85. package/lib/commands/plugin/update-plugin.js +0 -1
  86. package/lib/commands/post-install.d.ts +16 -0
  87. package/lib/commands/post-install.js +0 -6
  88. package/lib/commands/prepare.d.ts +40 -0
  89. package/lib/commands/prepare.js +4 -9
  90. package/lib/commands/preview.d.ts +18 -0
  91. package/lib/commands/preview.js +1 -2
  92. package/lib/commands/remove-platform.d.ts +14 -0
  93. package/lib/commands/remove-platform.js +0 -1
  94. package/lib/commands/resources/resources-update.d.ts +13 -0
  95. package/lib/commands/resources/resources-update.js +0 -2
  96. package/lib/commands/run.d.ts +61 -0
  97. package/lib/commands/run.js +0 -1
  98. package/lib/commands/setup.d.ts +8 -0
  99. package/lib/commands/setup.js +0 -1
  100. package/lib/commands/start.d.ts +9 -0
  101. package/lib/commands/start.js +0 -1
  102. package/lib/commands/test-init.js +0 -4
  103. package/lib/commands/test.js +3 -9
  104. package/lib/commands/typings.d.ts +22 -0
  105. package/lib/commands/typings.js +1 -2
  106. package/lib/commands/update-platform.d.ts +17 -0
  107. package/lib/commands/update-platform.js +0 -5
  108. package/lib/commands/update.d.ts +21 -0
  109. package/lib/commands/update.js +0 -2
  110. package/lib/commands/widget.d.ts +24 -0
  111. package/lib/commands/widget.js +0 -19
  112. package/lib/common/bootstrap.js +0 -1
  113. package/lib/common/child-process.d.ts +17 -0
  114. package/lib/common/child-process.js +0 -3
  115. package/lib/common/codeGeneration/code-entity.d.ts +22 -0
  116. package/lib/common/codeGeneration/code-entity.js +0 -1
  117. package/lib/common/codeGeneration/code-printer.d.ts +10 -0
  118. package/lib/common/codeGeneration/code-printer.js +0 -1
  119. package/lib/common/command-params.d.ts +14 -0
  120. package/lib/common/command-params.js +0 -1
  121. package/lib/common/commands/analytics.d.ts +30 -0
  122. package/lib/common/commands/analytics.js +0 -3
  123. package/lib/common/commands/autocompletion.d.ts +35 -0
  124. package/lib/common/commands/autocompletion.js +0 -3
  125. package/lib/common/commands/device/device-log-stream.d.ts +16 -0
  126. package/lib/common/commands/device/device-log-stream.js +0 -1
  127. package/lib/common/commands/device/get-file.d.ts +14 -0
  128. package/lib/common/commands/device/get-file.js +0 -2
  129. package/lib/common/commands/device/list-applications.d.ts +10 -0
  130. package/lib/common/commands/device/list-applications.js +0 -1
  131. package/lib/common/commands/device/list-devices.d.ts +16 -0
  132. package/lib/common/commands/device/list-devices.js +0 -3
  133. package/lib/common/commands/device/list-files.d.ts +14 -0
  134. package/lib/common/commands/device/list-files.js +0 -2
  135. package/lib/common/commands/device/put-file.d.ts +14 -0
  136. package/lib/common/commands/device/put-file.js +0 -2
  137. package/lib/common/commands/device/run-application.d.ts +13 -0
  138. package/lib/common/commands/device/run-application.js +0 -1
  139. package/lib/common/commands/device/stop-application.d.ts +10 -0
  140. package/lib/common/commands/device/stop-application.js +0 -1
  141. package/lib/common/commands/device/uninstall-application.d.ts +10 -0
  142. package/lib/common/commands/device/uninstall-application.js +0 -1
  143. package/lib/common/commands/doctor.d.ts +23 -0
  144. package/lib/common/commands/doctor.js +3 -3
  145. package/lib/common/commands/generate-messages.d.ts +13 -0
  146. package/lib/common/commands/generate-messages.js +0 -1
  147. package/lib/common/commands/help.d.ts +14 -0
  148. package/lib/common/commands/help.js +0 -1
  149. package/lib/common/commands/package-manager-get.d.ts +10 -0
  150. package/lib/common/commands/package-manager-get.js +0 -1
  151. package/lib/common/commands/package-manager-set.d.ts +11 -0
  152. package/lib/common/commands/package-manager-set.js +0 -1
  153. package/lib/common/commands/post-install.d.ts +9 -0
  154. package/lib/common/commands/post-install.js +0 -1
  155. package/lib/common/commands/preuninstall.d.ts +16 -0
  156. package/lib/common/commands/preuninstall.js +2 -11
  157. package/lib/common/commands/proxy/proxy-base.d.ts +13 -0
  158. package/lib/common/commands/proxy/proxy-base.js +0 -4
  159. package/lib/common/commands/proxy/proxy-clear.d.ts +9 -0
  160. package/lib/common/commands/proxy/proxy-clear.js +0 -1
  161. package/lib/common/commands/proxy/proxy-get.d.ts +9 -0
  162. package/lib/common/commands/proxy/proxy-get.js +0 -1
  163. package/lib/common/commands/proxy/proxy-set.d.ts +23 -0
  164. package/lib/common/commands/proxy/proxy-set.js +0 -1
  165. package/lib/common/common-lib.js +0 -1
  166. package/lib/common/constants.d.ts +117 -0
  167. package/lib/common/constants.js +14 -12
  168. package/lib/common/contracts/command-registry.d.ts +35 -0
  169. package/lib/common/contracts/command-registry.js +16 -0
  170. package/lib/common/contracts/index.d.ts +5 -0
  171. package/lib/common/contracts/index.js +11 -0
  172. package/lib/common/contracts/key-command-registry.d.ts +7 -0
  173. package/lib/common/contracts/key-command-registry.js +16 -0
  174. package/lib/common/contracts/module-registry.d.ts +4 -0
  175. package/lib/common/contracts/module-registry.js +16 -0
  176. package/lib/common/contracts/public-api-builder.d.ts +5 -0
  177. package/lib/common/contracts/public-api-builder.js +16 -0
  178. package/lib/common/declarations.d.ts +49 -118
  179. package/lib/common/decorators.d.ts +13 -0
  180. package/lib/common/decorators.js +0 -48
  181. package/lib/common/define-command.d.ts +53 -0
  182. package/lib/common/define-command.js +147 -0
  183. package/lib/common/define-hook.d.ts +29 -0
  184. package/lib/common/define-hook.js +101 -0
  185. package/lib/common/definitions/commands.d.ts +7 -0
  186. package/lib/common/definitions/extensibility.d.ts +7 -0
  187. package/lib/common/definitions/key-commands.d.ts +15 -52
  188. package/lib/common/definitions/key-commands.js +8 -0
  189. package/lib/common/definitions/yok.d.ts +43 -35
  190. package/lib/common/deprecation.d.ts +12 -0
  191. package/lib/common/deprecation.js +56 -0
  192. package/lib/common/di/contract.d.ts +7 -0
  193. package/lib/common/di/contract.js +34 -0
  194. package/lib/common/di/forward-ref.d.ts +2 -0
  195. package/lib/common/di/forward-ref.js +15 -0
  196. package/lib/common/di/index.d.ts +8 -0
  197. package/lib/common/di/index.js +19 -0
  198. package/lib/common/di/inject.d.ts +8 -0
  199. package/lib/common/di/inject.js +41 -0
  200. package/lib/common/di/injector.d.ts +38 -0
  201. package/lib/common/di/injector.js +268 -0
  202. package/lib/common/di/providers.d.ts +30 -0
  203. package/lib/common/di/providers.js +7 -0
  204. package/lib/common/dispatchers.d.ts +21 -0
  205. package/lib/common/dispatchers.js +1 -10
  206. package/lib/common/enums.d.ts +34 -0
  207. package/lib/common/enums.js +42 -0
  208. package/lib/common/errors.d.ts +15 -0
  209. package/lib/common/errors.js +4 -13
  210. package/lib/common/file-system.d.ts +77 -0
  211. package/lib/common/file-system.js +2 -13
  212. package/lib/common/header.d.ts +1 -0
  213. package/lib/common/header.js +0 -3
  214. package/lib/common/helpers.d.ts +62 -0
  215. package/lib/common/helpers.js +6 -92
  216. package/lib/common/host-info.d.ts +24 -0
  217. package/lib/common/host-info.js +0 -4
  218. package/lib/common/http-client.d.ts +14 -0
  219. package/lib/common/http-client.js +11 -20
  220. package/lib/common/logger/appenders/cli-appender.d.ts +2 -0
  221. package/lib/common/logger/appenders/cli-appender.js +0 -4
  222. package/lib/common/logger/appenders/emit-appender.d.ts +5 -0
  223. package/lib/common/logger/appenders/emit-appender.js +0 -4
  224. package/lib/common/logger/layouts/cli-layout.d.ts +2 -0
  225. package/lib/common/logger/layouts/cli-layout.js +0 -1
  226. package/lib/common/logger/logger.d.ts +24 -0
  227. package/lib/common/logger/logger.js +0 -5
  228. package/lib/common/messages/messages.d.ts +7 -0
  229. package/lib/common/messages/messages.js +0 -6
  230. package/lib/common/mobile/android/android-application-manager.d.ts +31 -0
  231. package/lib/common/mobile/android/android-application-manager.js +1 -20
  232. package/lib/common/mobile/android/android-debug-bridge-result-handler.d.ts +9 -0
  233. package/lib/common/mobile/android/android-debug-bridge-result-handler.js +0 -1
  234. package/lib/common/mobile/android/android-debug-bridge.d.ts +24 -0
  235. package/lib/common/mobile/android/android-debug-bridge.js +0 -6
  236. package/lib/common/mobile/android/android-device-file-system.d.ts +26 -0
  237. package/lib/common/mobile/android/android-device-file-system.js +0 -4
  238. package/lib/common/mobile/android/android-device-hash-service.d.ts +23 -0
  239. package/lib/common/mobile/android/android-device-hash-service.js +0 -3
  240. package/lib/common/mobile/android/android-device.d.ts +24 -0
  241. package/lib/common/mobile/android/android-device.js +0 -8
  242. package/lib/common/mobile/android/android-emulator-services.d.ts +23 -0
  243. package/lib/common/mobile/android/android-emulator-services.js +1 -2
  244. package/lib/common/mobile/android/android-ini-file-parser.d.ts +8 -0
  245. package/lib/common/mobile/android/android-ini-file-parser.js +0 -9
  246. package/lib/common/mobile/android/android-log-filter.d.ts +11 -0
  247. package/lib/common/mobile/android/android-log-filter.js +0 -4
  248. package/lib/common/mobile/android/android-virtual-device-service.d.ts +37 -0
  249. package/lib/common/mobile/android/android-virtual-device-service.js +0 -26
  250. package/lib/common/mobile/android/device-android-debug-bridge.d.ts +18 -0
  251. package/lib/common/mobile/android/device-android-debug-bridge.js +0 -1
  252. package/lib/common/mobile/android/genymotion/genymotion-service.d.ts +26 -0
  253. package/lib/common/mobile/android/genymotion/genymotion-service.js +1 -6
  254. package/lib/common/mobile/android/genymotion/virtualbox-service.d.ts +13 -0
  255. package/lib/common/mobile/android/genymotion/virtualbox-service.js +0 -11
  256. package/lib/common/mobile/android/logcat-helper.d.ts +17 -0
  257. package/lib/common/mobile/android/logcat-helper.js +0 -13
  258. package/lib/common/mobile/application-manager-base.d.ts +27 -0
  259. package/lib/common/mobile/application-manager-base.js +0 -6
  260. package/lib/common/mobile/device-emitter.d.ts +8 -0
  261. package/lib/common/mobile/device-emitter.js +0 -4
  262. package/lib/common/mobile/device-log-emitter.d.ts +9 -0
  263. package/lib/common/mobile/device-log-emitter.js +0 -1
  264. package/lib/common/mobile/device-log-provider-base.d.ts +21 -0
  265. package/lib/common/mobile/device-log-provider-base.js +0 -1
  266. package/lib/common/mobile/device-log-provider.d.ts +21 -0
  267. package/lib/common/mobile/device-log-provider.js +0 -23
  268. package/lib/common/mobile/device-platforms-constants.d.ts +8 -0
  269. package/lib/common/mobile/device-platforms-constants.js +0 -1
  270. package/lib/common/mobile/emulator-helper.d.ts +32 -0
  271. package/lib/common/mobile/emulator-helper.js +0 -3
  272. package/lib/common/mobile/ios/device/ios-application-manager.d.ts +27 -0
  273. package/lib/common/mobile/ios/device/ios-application-manager.js +0 -3
  274. package/lib/common/mobile/ios/device/ios-device-file-system.d.ts +19 -0
  275. package/lib/common/mobile/ios/device/ios-device-file-system.js +0 -9
  276. package/lib/common/mobile/ios/device/ios-device-operations.d.ts +29 -0
  277. package/lib/common/mobile/ios/device/ios-device-operations.js +0 -4
  278. package/lib/common/mobile/ios/device/ios-device.d.ts +32 -0
  279. package/lib/common/mobile/ios/device/ios-device.js +0 -4
  280. package/lib/common/mobile/ios/ios-device-base.d.ts +24 -0
  281. package/lib/common/mobile/ios/ios-device-base.js +0 -1
  282. package/lib/common/mobile/ios/ios-device-product-name-mapper.js +0 -2
  283. package/lib/common/mobile/ios/ios-log-filter.d.ts +6 -0
  284. package/lib/common/mobile/ios/ios-log-filter.js +0 -1
  285. package/lib/common/mobile/ios/simulator/ios-emulator-services.d.ts +1 -0
  286. package/lib/common/mobile/ios/simulator/ios-emulator-services.js +0 -4
  287. package/lib/common/mobile/ios/simulator/ios-sim-resolver.d.ts +7 -0
  288. package/lib/common/mobile/ios/simulator/ios-sim-resolver.js +0 -1
  289. package/lib/common/mobile/ios/simulator/ios-simulator-application-manager.d.ts +27 -0
  290. package/lib/common/mobile/ios/simulator/ios-simulator-application-manager.js +0 -6
  291. package/lib/common/mobile/ios/simulator/ios-simulator-device.d.ts +27 -0
  292. package/lib/common/mobile/ios/simulator/ios-simulator-device.js +0 -5
  293. package/lib/common/mobile/ios/simulator/ios-simulator-file-system.d.ts +16 -0
  294. package/lib/common/mobile/ios/simulator/ios-simulator-file-system.js +0 -1
  295. package/lib/common/mobile/ios/simulator/ios-simulator-log-provider.d.ts +15 -0
  296. package/lib/common/mobile/ios/simulator/ios-simulator-log-provider.js +0 -1
  297. package/lib/common/mobile/local-to-device-path-data-factory.d.ts +3 -0
  298. package/lib/common/mobile/local-to-device-path-data-factory.js +0 -1
  299. package/lib/common/mobile/log-filter.d.ts +13 -0
  300. package/lib/common/mobile/log-filter.js +0 -2
  301. package/lib/common/mobile/logging-levels.d.ts +4 -0
  302. package/lib/common/mobile/logging-levels.js +0 -1
  303. package/lib/common/mobile/mobile-core/android-device-discovery.d.ts +16 -0
  304. package/lib/common/mobile/mobile-core/android-device-discovery.js +0 -2
  305. package/lib/common/mobile/mobile-core/android-emulator-discovery.d.ts +11 -0
  306. package/lib/common/mobile/mobile-core/android-emulator-discovery.js +0 -3
  307. package/lib/common/mobile/mobile-core/android-process-service.d.ts +33 -0
  308. package/lib/common/mobile/mobile-core/android-process-service.js +0 -32
  309. package/lib/common/mobile/mobile-core/device-discovery.d.ts +12 -0
  310. package/lib/common/mobile/mobile-core/device-discovery.js +0 -1
  311. package/lib/common/mobile/mobile-core/devices-service.d.ts +99 -0
  312. package/lib/common/mobile/mobile-core/devices-service.js +0 -69
  313. package/lib/common/mobile/mobile-core/ios-device-discovery.d.ts +12 -0
  314. package/lib/common/mobile/mobile-core/ios-device-discovery.js +0 -2
  315. package/lib/common/mobile/mobile-core/ios-simulator-discovery.d.ts +20 -0
  316. package/lib/common/mobile/mobile-core/ios-simulator-discovery.js +0 -3
  317. package/lib/common/mobile/mobile-helper.d.ts +22 -0
  318. package/lib/common/mobile/mobile-helper.js +0 -1
  319. package/lib/common/mobile/wp8/wp8-emulator-services.d.ts +1 -0
  320. package/lib/common/mobile/wp8/wp8-emulator-services.js +0 -1
  321. package/lib/common/opener.d.ts +4 -0
  322. package/lib/common/opener.js +0 -1
  323. package/lib/common/os-info.d.ts +7 -0
  324. package/lib/common/os-info.js +0 -1
  325. package/lib/common/plist-parser.d.ts +5 -0
  326. package/lib/common/plist-parser.js +0 -1
  327. package/lib/common/project-helper.d.ts +15 -0
  328. package/lib/common/project-helper.js +0 -1
  329. package/lib/common/prompter.d.ts +23 -0
  330. package/lib/common/prompter.js +1 -9
  331. package/lib/common/queue.d.ts +8 -0
  332. package/lib/common/queue.js +0 -1
  333. package/lib/common/resource-loader.d.ts +10 -0
  334. package/lib/common/resource-loader.js +0 -1
  335. package/lib/common/services/analytics/google-analytics-custom-dimensions.d.ts +8 -15
  336. package/lib/common/services/analytics/google-analytics-custom-dimensions.js +13 -0
  337. package/lib/common/services/auto-completion-service.d.ts +36 -0
  338. package/lib/common/services/auto-completion-service.js +1 -13
  339. package/lib/common/services/cancellation.d.ts +1 -0
  340. package/lib/common/services/cancellation.js +2 -2
  341. package/lib/common/services/command-definition-adapter.d.ts +6 -0
  342. package/lib/common/services/command-definition-adapter.js +141 -0
  343. package/lib/common/services/commands-service.d.ts +30 -0
  344. package/lib/common/services/commands-service.js +10 -18
  345. package/lib/common/services/help-service.d.ts +46 -0
  346. package/lib/common/services/help-service.js +4 -11
  347. package/lib/common/services/hooks-service.d.ts +40 -0
  348. package/lib/common/services/hooks-service.js +110 -64
  349. package/lib/common/services/ios-notification-service.d.ts +7 -0
  350. package/lib/common/services/ios-notification-service.js +0 -1
  351. package/lib/common/services/json-file-settings-service.d.ts +24 -0
  352. package/lib/common/services/json-file-settings-service.js +0 -6
  353. package/lib/common/services/lock-service.d.ts +18 -0
  354. package/lib/common/services/lock-service.js +0 -6
  355. package/lib/common/services/message-contract-generator.d.ts +8 -0
  356. package/lib/common/services/message-contract-generator.js +0 -1
  357. package/lib/common/services/messages-service.d.ts +15 -0
  358. package/lib/common/services/messages-service.js +0 -1
  359. package/lib/common/services/micro-templating-service.d.ts +12 -0
  360. package/lib/common/services/micro-templating-service.js +0 -6
  361. package/lib/common/services/net-service.d.ts +13 -0
  362. package/lib/common/services/net-service.js +0 -3
  363. package/lib/common/services/project-files-manager.d.ts +14 -0
  364. package/lib/common/services/project-files-manager.js +0 -5
  365. package/lib/common/services/project-files-provider-base.d.ts +12 -0
  366. package/lib/common/services/project-files-provider-base.js +0 -1
  367. package/lib/common/services/proxy-service.d.ts +12 -0
  368. package/lib/common/services/proxy-service.js +0 -1
  369. package/lib/common/services/qr.d.ts +7 -0
  370. package/lib/common/services/qr.js +0 -1
  371. package/lib/common/services/settings-service.d.ts +10 -0
  372. package/lib/common/services/settings-service.js +0 -1
  373. package/lib/common/services/xcode-select-service.d.ts +12 -0
  374. package/lib/common/services/xcode-select-service.js +0 -1
  375. package/lib/common/utils.d.ts +10 -0
  376. package/lib/common/utils.js +0 -1
  377. package/lib/common/validators/project-name-validator.d.ts +18 -0
  378. package/lib/common/validators/project-name-validator.js +0 -1
  379. package/lib/common/validators/validation-result.d.ts +7 -0
  380. package/lib/common/validators/validation-result.js +0 -1
  381. package/lib/common/verify-node-version.d.ts +3 -0
  382. package/lib/common/verify-node-version.js +2 -8
  383. package/lib/common/yok.d.ts +60 -0
  384. package/lib/common/yok.js +173 -165
  385. package/lib/config.d.ts +45 -0
  386. package/lib/config.js +3 -23
  387. package/lib/constants-provider.d.ts +4 -0
  388. package/lib/constants-provider.js +0 -1
  389. package/lib/constants.d.ts +331 -0
  390. package/lib/constants.js +59 -58
  391. package/lib/contracts/doctor-service.d.ts +20 -0
  392. package/lib/contracts/doctor-service.js +16 -0
  393. package/lib/contracts/index.d.ts +14 -0
  394. package/lib/contracts/index.js +32 -0
  395. package/lib/contracts/project-name-service.d.ts +5 -0
  396. package/lib/contracts/project-name-service.js +16 -0
  397. package/lib/controllers/build-controller.d.ts +23 -0
  398. package/lib/controllers/build-controller.js +3 -4
  399. package/lib/controllers/debug-controller.d.ts +31 -0
  400. package/lib/controllers/debug-controller.js +3 -8
  401. package/lib/controllers/deploy-controller.d.ts +7 -0
  402. package/lib/controllers/deploy-controller.js +0 -1
  403. package/lib/controllers/migrate-controller.d.ts +67 -0
  404. package/lib/controllers/migrate-controller.js +4 -90
  405. package/lib/controllers/platform-controller.d.ts +20 -0
  406. package/lib/controllers/platform-controller.js +2 -9
  407. package/lib/controllers/prepare-controller.d.ts +45 -0
  408. package/lib/controllers/prepare-controller.js +8 -24
  409. package/lib/controllers/run-controller.d.ts +57 -0
  410. package/lib/controllers/run-controller.js +1 -81
  411. package/lib/controllers/update-controller-base.d.ts +27 -0
  412. package/lib/controllers/update-controller-base.js +0 -1
  413. package/lib/controllers/update-controller.d.ts +36 -0
  414. package/lib/controllers/update-controller.js +0 -11
  415. package/lib/data/build-data.d.ts +33 -0
  416. package/lib/data/build-data.js +0 -1
  417. package/lib/data/controller-data-base.d.ts +8 -0
  418. package/lib/data/controller-data-base.js +0 -1
  419. package/lib/data/debug-data.d.ts +2 -0
  420. package/lib/data/debug-data.js +0 -1
  421. package/lib/data/platform-data.d.ts +7 -0
  422. package/lib/data/platform-data.js +0 -1
  423. package/lib/data/prepare-data.d.ts +22 -0
  424. package/lib/data/prepare-data.js +0 -1
  425. package/lib/data/run-data.d.ts +6 -0
  426. package/lib/data/run-data.js +0 -1
  427. package/lib/declarations.d.ts +2 -1
  428. package/lib/definitions/ios.d.ts +36 -1
  429. package/lib/definitions/project.d.ts +1 -6
  430. package/lib/definitions/system-warnings.d.ts +3 -3
  431. package/lib/definitions/system-warnings.js +8 -0
  432. package/lib/detached-processes/cleanup-js-subprocess.d.ts +2 -0
  433. package/lib/detached-processes/cleanup-js-subprocess.js +3 -8
  434. package/lib/detached-processes/cleanup-process.d.ts +1 -0
  435. package/lib/detached-processes/cleanup-process.js +15 -18
  436. package/lib/detached-processes/detached-process-enums.d.ts +15 -67
  437. package/lib/detached-processes/detached-process-enums.js +24 -0
  438. package/lib/detached-processes/file-log-service.d.ts +7 -0
  439. package/lib/detached-processes/file-log-service.js +2 -2
  440. package/lib/device-path-provider.d.ts +9 -0
  441. package/lib/device-path-provider.js +0 -1
  442. package/lib/device-sockets/ios/app-debug-socket-proxy-factory.d.ts +22 -0
  443. package/lib/device-sockets/ios/app-debug-socket-proxy-factory.js +0 -7
  444. package/lib/device-sockets/ios/notification.d.ts +13 -0
  445. package/lib/device-sockets/ios/notification.js +0 -3
  446. package/lib/device-sockets/ios/socket-request-executor.d.ts +11 -0
  447. package/lib/device-sockets/ios/socket-request-executor.js +0 -3
  448. package/lib/helpers/android-bundle-validator-helper.d.ts +18 -0
  449. package/lib/helpers/android-bundle-validator-helper.js +1 -2
  450. package/lib/helpers/deploy-command-helper.d.ts +16 -0
  451. package/lib/helpers/deploy-command-helper.js +0 -1
  452. package/lib/helpers/key-command-helper.d.ts +13 -0
  453. package/lib/helpers/key-command-helper.js +3 -4
  454. package/lib/helpers/livesync-command-helper.d.ts +36 -0
  455. package/lib/helpers/livesync-command-helper.js +2 -4
  456. package/lib/helpers/network-connectivity-validator.d.ts +12 -0
  457. package/lib/helpers/network-connectivity-validator.js +0 -1
  458. package/lib/helpers/options-track-helper.d.ts +14 -0
  459. package/lib/helpers/options-track-helper.js +4 -3
  460. package/lib/helpers/package-path-helper.d.ts +2 -0
  461. package/lib/helpers/package-path-helper.js +0 -1
  462. package/lib/helpers/platform-command-helper.d.ts +35 -0
  463. package/lib/helpers/platform-command-helper.js +2 -7
  464. package/lib/helpers/version-validator-helper.d.ts +8 -0
  465. package/lib/helpers/version-validator-helper.js +0 -1
  466. package/lib/key-commands/bootstrap.d.ts +1 -0
  467. package/lib/key-commands/bootstrap.js +3 -3
  468. package/lib/key-commands/index.d.ts +166 -0
  469. package/lib/key-commands/index.js +5 -5
  470. package/lib/nativescript-cli-lib-bootstrap.d.ts +1 -0
  471. package/lib/nativescript-cli-lib-bootstrap.js +0 -4
  472. package/lib/nativescript-cli-lib.d.ts +1 -0
  473. package/lib/nativescript-cli-lib.js +0 -1
  474. package/lib/nativescript-cli.d.ts +1 -0
  475. package/lib/nativescript-cli.js +2 -11
  476. package/lib/node/pbxproj-dom-xcode.d.ts +4 -0
  477. package/lib/node/pbxproj-dom-xcode.js +0 -1
  478. package/lib/node/xcode.d.ts +2 -0
  479. package/lib/node/xcode.js +0 -1
  480. package/lib/node-package-manager.d.ts +16 -0
  481. package/lib/node-package-manager.js +1 -11
  482. package/lib/options.d.ts +33 -0
  483. package/lib/options.js +186 -183
  484. package/lib/package-installation-manager.d.ts +30 -0
  485. package/lib/package-installation-manager.js +1 -8
  486. package/lib/package-manager.d.ts +32 -0
  487. package/lib/package-manager.js +0 -2
  488. package/lib/platform-command-param.d.ts +10 -0
  489. package/lib/platform-command-param.js +0 -1
  490. package/lib/pnpm-package-manager.d.ts +16 -0
  491. package/lib/pnpm-package-manager.js +1 -4
  492. package/lib/project-data.d.ts +58 -0
  493. package/lib/project-data.js +0 -12
  494. package/lib/providers/project-files-provider.d.ts +12 -0
  495. package/lib/providers/project-files-provider.js +0 -1
  496. package/lib/resolvers/livesync-service-resolver.d.ts +9 -0
  497. package/lib/resolvers/livesync-service-resolver.js +0 -1
  498. package/lib/services/analytics/analytics-broker-process.d.ts +1 -0
  499. package/lib/services/analytics/analytics-broker-process.js +8 -10
  500. package/lib/services/analytics/analytics-broker.d.ts +11 -0
  501. package/lib/services/analytics/analytics-broker.js +2 -2
  502. package/lib/services/analytics/analytics-service.d.ts +46 -0
  503. package/lib/services/analytics/analytics-service.js +29 -29
  504. package/lib/services/analytics/google-analytics-provider.d.ts +22 -0
  505. package/lib/services/analytics/google-analytics-provider.js +96 -92
  506. package/lib/services/analytics-settings-service.d.ts +1 -0
  507. package/lib/services/analytics-settings-service.js +0 -5
  508. package/lib/services/android/android-bundle-tool-service.d.ts +27 -0
  509. package/lib/services/android/android-bundle-tool-service.js +102 -4
  510. package/lib/services/android/gradle-build-args-service.d.ts +17 -0
  511. package/lib/services/android/gradle-build-args-service.js +0 -3
  512. package/lib/services/android/gradle-build-service.d.ts +12 -0
  513. package/lib/services/android/gradle-build-service.js +0 -1
  514. package/lib/services/android/gradle-command-service.d.ts +11 -0
  515. package/lib/services/android/gradle-command-service.js +0 -1
  516. package/lib/services/android-device-debug-service.d.ts +30 -0
  517. package/lib/services/android-device-debug-service.js +0 -6
  518. package/lib/services/android-plugin-build-service.d.ts +55 -0
  519. package/lib/services/android-plugin-build-service.js +2 -31
  520. package/lib/services/android-project-service.d.ts +75 -0
  521. package/lib/services/android-project-service.js +4 -71
  522. package/lib/services/android-resources-migration-service.d.ts +17 -0
  523. package/lib/services/android-resources-migration-service.js +0 -7
  524. package/lib/services/apple-portal/apple-portal-application-service.d.ts +12 -0
  525. package/lib/services/apple-portal/apple-portal-application-service.js +0 -1
  526. package/lib/services/apple-portal/apple-portal-cookie-service.d.ts +10 -0
  527. package/lib/services/apple-portal/apple-portal-cookie-service.js +0 -1
  528. package/lib/services/apple-portal/apple-portal-session-service.d.ts +19 -0
  529. package/lib/services/apple-portal/apple-portal-session-service.js +4 -6
  530. package/lib/services/apple-portal/srp/srp-wrapper.d.ts +29 -0
  531. package/lib/services/apple-portal/srp/srp-wrapper.js +1 -4
  532. package/lib/services/assets-generation/assets-generation-service.d.ts +24 -0
  533. package/lib/services/assets-generation/assets-generation-service.js +13 -11
  534. package/lib/services/build-artifacts-service.d.ts +16 -0
  535. package/lib/services/build-artifacts-service.js +1 -2
  536. package/lib/services/build-data-service.d.ts +7 -0
  537. package/lib/services/build-data-service.js +0 -1
  538. package/lib/services/build-info-file-service.d.ts +16 -0
  539. package/lib/services/build-info-file-service.js +0 -1
  540. package/lib/services/bundler/bundler-compiler-service.d.ts +50 -0
  541. package/lib/services/bundler/bundler-compiler-service.js +3 -145
  542. package/lib/services/bundler/bundler.d.ts +75 -0
  543. package/lib/services/bundler/bundler.js +0 -1
  544. package/lib/services/cleanup-service.d.ts +29 -0
  545. package/lib/services/cleanup-service.js +10 -13
  546. package/lib/services/cocoapods-platform-manager.d.ts +17 -0
  547. package/lib/services/cocoapods-platform-manager.js +0 -9
  548. package/lib/services/cocoapods-service.d.ts +47 -0
  549. package/lib/services/cocoapods-service.js +1 -21
  550. package/lib/services/debug-data-service.d.ts +7 -0
  551. package/lib/services/debug-data-service.js +0 -1
  552. package/lib/services/debug-service-base.d.ts +12 -0
  553. package/lib/services/debug-service-base.js +0 -7
  554. package/lib/services/device/device-install-app-service.d.ts +19 -0
  555. package/lib/services/device/device-install-app-service.js +1 -2
  556. package/lib/services/doctor-service.d.ts +51 -0
  557. package/lib/services/doctor-service.js +20 -32
  558. package/lib/services/extensibility-service.d.ts +36 -0
  559. package/lib/services/extensibility-service.js +126 -13
  560. package/lib/services/files-hash-service.d.ts +17 -0
  561. package/lib/services/files-hash-service.js +0 -1
  562. package/lib/services/hmr-status-service.d.ts +19 -0
  563. package/lib/services/hmr-status-service.js +0 -2
  564. package/lib/services/info-service.d.ts +6 -0
  565. package/lib/services/info-service.js +0 -1
  566. package/lib/services/initialize-service.d.ts +8 -0
  567. package/lib/services/initialize-service.js +2 -5
  568. package/lib/services/ios/export-options-plist-service.d.ts +13 -0
  569. package/lib/services/ios/export-options-plist-service.js +0 -4
  570. package/lib/services/ios/ios-signing-service.d.ts +33 -0
  571. package/lib/services/ios/ios-signing-service.js +0 -4
  572. package/lib/services/ios/spm-pbxproj-service.d.ts +16 -0
  573. package/lib/services/ios/spm-pbxproj-service.js +234 -0
  574. package/lib/services/ios/spm-service.d.ts +35 -0
  575. package/lib/services/ios/spm-service.js +10 -138
  576. package/lib/services/ios/xcodebuild-args-service.d.ts +20 -0
  577. package/lib/services/ios/xcodebuild-args-service.js +0 -29
  578. package/lib/services/ios/xcodebuild-command-service.d.ts +17 -0
  579. package/lib/services/ios/xcodebuild-command-service.js +0 -3
  580. package/lib/services/ios/xcodebuild-service.d.ts +13 -0
  581. package/lib/services/ios/xcodebuild-service.js +1 -2
  582. package/lib/services/ios-debugger-port-service.d.ts +20 -0
  583. package/lib/services/ios-debugger-port-service.js +0 -1
  584. package/lib/services/ios-device-debug-service.d.ts +29 -0
  585. package/lib/services/ios-device-debug-service.js +0 -1
  586. package/lib/services/ios-entitlements-service.d.ts +19 -0
  587. package/lib/services/ios-entitlements-service.js +3 -4
  588. package/lib/services/ios-extensions-service.d.ts +12 -0
  589. package/lib/services/ios-extensions-service.js +0 -1
  590. package/lib/services/ios-log-filter.d.ts +11 -0
  591. package/lib/services/ios-log-filter.js +0 -20
  592. package/lib/services/ios-native-target-service.d.ts +14 -0
  593. package/lib/services/ios-native-target-service.js +5 -6
  594. package/lib/services/ios-project-service.d.ts +108 -0
  595. package/lib/services/ios-project-service.js +9 -135
  596. package/lib/services/ios-provision-service.d.ts +18 -0
  597. package/lib/services/ios-provision-service.js +0 -3
  598. package/lib/services/ios-watch-app-service.d.ts +39 -0
  599. package/lib/services/ios-watch-app-service.js +18 -75
  600. package/lib/services/ip-service.d.ts +10 -0
  601. package/lib/services/ip-service.js +0 -2
  602. package/lib/services/itmstransporter-service.d.ts +26 -0
  603. package/lib/services/itmstransporter-service.js +0 -1
  604. package/lib/services/karma-execution.d.ts +1 -0
  605. package/lib/services/karma-execution.js +0 -2
  606. package/lib/services/livesync/android-device-livesync-service-base.d.ts +19 -0
  607. package/lib/services/livesync/android-device-livesync-service-base.js +0 -1
  608. package/lib/services/livesync/android-device-livesync-service.d.ts +24 -0
  609. package/lib/services/livesync/android-device-livesync-service.js +0 -2
  610. package/lib/services/livesync/android-device-livesync-sockets-service.d.ts +36 -0
  611. package/lib/services/livesync/android-device-livesync-sockets-service.js +0 -3
  612. package/lib/services/livesync/android-livesync-service.d.ts +16 -0
  613. package/lib/services/livesync/android-livesync-service.js +0 -1
  614. package/lib/services/livesync/android-livesync-tool.d.ts +58 -0
  615. package/lib/services/livesync/android-livesync-tool.js +0 -4
  616. package/lib/services/livesync/device-livesync-service-base.d.ts +13 -0
  617. package/lib/services/livesync/device-livesync-service-base.js +0 -2
  618. package/lib/services/livesync/ios-device-livesync-service.d.ts +28 -0
  619. package/lib/services/livesync/ios-device-livesync-service.js +0 -7
  620. package/lib/services/livesync/ios-livesync-service.d.ts +17 -0
  621. package/lib/services/livesync/ios-livesync-service.js +0 -55
  622. package/lib/services/livesync/livesync-socket.d.ts +5 -0
  623. package/lib/services/livesync/livesync-socket.js +0 -1
  624. package/lib/services/livesync/platform-livesync-service-base.d.ts +25 -0
  625. package/lib/services/livesync/platform-livesync-service-base.js +0 -5
  626. package/lib/services/livesync-process-data-service.d.ts +10 -0
  627. package/lib/services/livesync-process-data-service.js +0 -1
  628. package/lib/services/log-parser-service.d.ts +11 -0
  629. package/lib/services/log-parser-service.js +0 -1
  630. package/lib/services/log-source-map-service.d.ts +28 -0
  631. package/lib/services/log-source-map-service.js +0 -15
  632. package/lib/services/marking-mode-service.d.ts +12 -0
  633. package/lib/services/marking-mode-service.js +10 -8
  634. package/lib/services/metadata-filtering-service.d.ts +19 -0
  635. package/lib/services/metadata-filtering-service.js +0 -1
  636. package/lib/services/npm-config-service.d.ts +7 -0
  637. package/lib/services/npm-config-service.js +0 -4
  638. package/lib/services/pacote-service.d.ts +16 -0
  639. package/lib/services/pacote-service.js +0 -7
  640. package/lib/services/performance-service.d.ts +19 -0
  641. package/lib/services/performance-service.js +2 -3
  642. package/lib/services/platform/add-platform-service.d.ts +21 -0
  643. package/lib/services/platform/add-platform-service.js +2 -49
  644. package/lib/services/platform/platform-validation-service.d.ts +17 -0
  645. package/lib/services/platform/platform-validation-service.js +0 -1
  646. package/lib/services/platform/prepare-native-platform-service.d.ts +15 -0
  647. package/lib/services/platform/prepare-native-platform-service.js +3 -5
  648. package/lib/services/platform-environment-requirements.d.ts +15 -0
  649. package/lib/services/platform-environment-requirements.js +4 -8
  650. package/lib/services/platform-project-service-base.d.ts +14 -0
  651. package/lib/services/platform-project-service-base.js +0 -1
  652. package/lib/services/platforms-data-service.d.ts +9 -0
  653. package/lib/services/platforms-data-service.js +0 -1
  654. package/lib/services/plugins-service.d.ts +60 -0
  655. package/lib/services/plugins-service.js +2 -20
  656. package/lib/services/prepare-data-service.d.ts +7 -0
  657. package/lib/services/prepare-data-service.js +0 -1
  658. package/lib/services/project-backup-service.d.ts +12 -0
  659. package/lib/services/project-backup-service.js +0 -4
  660. package/lib/services/project-changes-service.d.ts +30 -0
  661. package/lib/services/project-changes-service.js +3 -14
  662. package/lib/services/project-cleanup-service.d.ts +13 -0
  663. package/lib/services/project-cleanup-service.js +0 -2
  664. package/lib/services/project-config-service.d.ts +33 -0
  665. package/lib/services/project-config-service.js +35 -32
  666. package/lib/services/project-data-service.d.ts +48 -0
  667. package/lib/services/project-data-service.js +7 -36
  668. package/lib/services/project-name-service.d.ts +16 -0
  669. package/lib/services/project-name-service.js +4 -5
  670. package/lib/services/project-service.d.ts +34 -0
  671. package/lib/services/project-service.js +0 -10
  672. package/lib/services/project-templates-service.d.ts +18 -0
  673. package/lib/services/project-templates-service.js +2 -3
  674. package/lib/services/qr-code-terminal-service.d.ts +5 -0
  675. package/lib/services/qr-code-terminal-service.js +0 -1
  676. package/lib/services/require-service.d.ts +3 -0
  677. package/lib/services/require-service.js +0 -1
  678. package/lib/services/start-service.d.ts +30 -0
  679. package/lib/services/start-service.js +0 -1
  680. package/lib/services/temp-service.d.ts +14 -0
  681. package/lib/services/temp-service.js +0 -3
  682. package/lib/services/terminal-spinner-service.d.ts +5 -0
  683. package/lib/services/terminal-spinner-service.js +0 -2
  684. package/lib/services/test-execution-service.d.ts +26 -0
  685. package/lib/services/test-execution-service.js +3 -9
  686. package/lib/services/test-initialization-service.d.ts +10 -0
  687. package/lib/services/test-initialization-service.js +0 -4
  688. package/lib/services/timeline-profiler-service.d.ts +18 -0
  689. package/lib/services/timeline-profiler-service.js +0 -1
  690. package/lib/services/user-settings-service.d.ts +14 -0
  691. package/lib/services/user-settings-service.js +0 -1
  692. package/lib/services/versions-service.d.ts +5 -0
  693. package/lib/services/versions-service.js +5 -6
  694. package/lib/services/watch-ignore-list-service.d.ts +7 -0
  695. package/lib/services/watch-ignore-list-service.js +0 -1
  696. package/lib/services/xcconfig-service.d.ts +15 -0
  697. package/lib/services/xcconfig-service.js +45 -12
  698. package/lib/services/xcproj-service.d.ts +1 -0
  699. package/lib/services/xcproj-service.js +0 -1
  700. package/lib/shared-event-bus.d.ts +1 -0
  701. package/lib/shared-event-bus.js +0 -6
  702. package/lib/sys-info.d.ts +18 -0
  703. package/lib/sys-info.js +2 -2
  704. package/lib/tools/config-manipulation/config-transformer.d.ts +28 -0
  705. package/lib/tools/config-manipulation/config-transformer.js +15 -19
  706. package/lib/tools/node-modules/node-modules-builder.d.ts +9 -0
  707. package/lib/tools/node-modules/node-modules-builder.js +0 -1
  708. package/lib/tools/node-modules/node-modules-dependencies-builder.d.ts +10 -0
  709. package/lib/tools/node-modules/node-modules-dependencies-builder.js +0 -6
  710. package/lib/tools/plist-merge/plist-session.d.ts +30 -0
  711. package/lib/tools/plist-merge/plist-session.js +92 -0
  712. package/lib/yarn-package-manager.d.ts +16 -0
  713. package/lib/yarn-package-manager.js +0 -1
  714. package/lib/yarn2-package-manager.d.ts +18 -0
  715. package/lib/yarn2-package-manager.js +0 -3
  716. package/package.json +11 -118
  717. package/postinstall.js +7 -2
  718. package/lib/.d.ts +0 -504
  719. package/lib/services/analytics/google-analytics-cross-client-custom-dimensions.d.ts +0 -6
  720. package/node_modules/debug/LICENSE +0 -20
  721. package/node_modules/debug/README.md +0 -481
  722. package/node_modules/debug/package.json +0 -64
  723. package/node_modules/debug/src/browser.js +0 -272
  724. package/node_modules/debug/src/common.js +0 -292
  725. package/node_modules/debug/src/index.js +0 -10
  726. package/node_modules/debug/src/node.js +0 -263
  727. package/node_modules/ms/index.js +0 -162
  728. package/node_modules/ms/license.md +0 -21
  729. package/node_modules/ms/package.json +0 -38
  730. package/node_modules/ms/readme.md +0 -59
  731. package/node_modules/universal-analytics/.travis.yml +0 -11
  732. package/node_modules/universal-analytics/AcceptableParams.md +0 -757
  733. package/node_modules/universal-analytics/HISTORY.md +0 -170
  734. package/node_modules/universal-analytics/Makefile +0 -5
  735. package/node_modules/universal-analytics/README.md +0 -651
  736. package/node_modules/universal-analytics/index.js +0 -2
  737. package/node_modules/universal-analytics/lib/config.js +0 -171
  738. package/node_modules/universal-analytics/lib/index.js +0 -563
  739. package/node_modules/universal-analytics/lib/request.js +0 -73
  740. package/node_modules/universal-analytics/lib/utils.js +0 -29
  741. package/node_modules/universal-analytics/package.json +0 -33
  742. package/node_modules/universal-analytics/test/_enqueue.js +0 -144
  743. package/node_modules/universal-analytics/test/event.js +0 -346
  744. package/node_modules/universal-analytics/test/exception.js +0 -233
  745. package/node_modules/universal-analytics/test/index.js +0 -141
  746. package/node_modules/universal-analytics/test/item.js +0 -550
  747. package/node_modules/universal-analytics/test/middleware.js +0 -119
  748. package/node_modules/universal-analytics/test/mocha.opts +0 -3
  749. package/node_modules/universal-analytics/test/pageview.js +0 -286
  750. package/node_modules/universal-analytics/test/send.js +0 -232
  751. package/node_modules/universal-analytics/test/set.js +0 -68
  752. package/node_modules/universal-analytics/test/timing.js +0 -363
  753. package/node_modules/universal-analytics/test/transaction.js +0 -371
  754. package/node_modules/uuid/LICENSE.md +0 -9
  755. package/node_modules/uuid/README.md +0 -510
  756. package/node_modules/uuid/dist/cjs/index.d.ts +0 -15
  757. package/node_modules/uuid/dist/cjs/index.js +0 -31
  758. package/node_modules/uuid/dist/cjs/max.d.ts +0 -2
  759. package/node_modules/uuid/dist/cjs/max.js +0 -3
  760. package/node_modules/uuid/dist/cjs/md5.d.ts +0 -4
  761. package/node_modules/uuid/dist/cjs/md5.js +0 -13
  762. package/node_modules/uuid/dist/cjs/native.d.ts +0 -6
  763. package/node_modules/uuid/dist/cjs/native.js +0 -4
  764. package/node_modules/uuid/dist/cjs/nil.d.ts +0 -2
  765. package/node_modules/uuid/dist/cjs/nil.js +0 -3
  766. package/node_modules/uuid/dist/cjs/package.json +0 -1
  767. package/node_modules/uuid/dist/cjs/parse.d.ts +0 -2
  768. package/node_modules/uuid/dist/cjs/parse.js +0 -11
  769. package/node_modules/uuid/dist/cjs/regex.d.ts +0 -2
  770. package/node_modules/uuid/dist/cjs/regex.js +0 -3
  771. package/node_modules/uuid/dist/cjs/rng.d.ts +0 -1
  772. package/node_modules/uuid/dist/cjs/rng.js +0 -13
  773. package/node_modules/uuid/dist/cjs/sha1.d.ts +0 -4
  774. package/node_modules/uuid/dist/cjs/sha1.js +0 -13
  775. package/node_modules/uuid/dist/cjs/stringify.d.ts +0 -3
  776. package/node_modules/uuid/dist/cjs/stringify.js +0 -39
  777. package/node_modules/uuid/dist/cjs/types.d.ts +0 -21
  778. package/node_modules/uuid/dist/cjs/types.js +0 -2
  779. package/node_modules/uuid/dist/cjs/uuid-bin.js +0 -72
  780. package/node_modules/uuid/dist/cjs/v1.d.ts +0 -11
  781. package/node_modules/uuid/dist/cjs/v1.js +0 -87
  782. package/node_modules/uuid/dist/cjs/v1ToV6.d.ts +0 -2
  783. package/node_modules/uuid/dist/cjs/v1ToV6.js +0 -13
  784. package/node_modules/uuid/dist/cjs/v3.d.ts +0 -9
  785. package/node_modules/uuid/dist/cjs/v3.js +0 -14
  786. package/node_modules/uuid/dist/cjs/v35.d.ts +0 -7
  787. package/node_modules/uuid/dist/cjs/v35.js +0 -41
  788. package/node_modules/uuid/dist/cjs/v4.d.ts +0 -4
  789. package/node_modules/uuid/dist/cjs/v4.js +0 -29
  790. package/node_modules/uuid/dist/cjs/v5.d.ts +0 -9
  791. package/node_modules/uuid/dist/cjs/v5.js +0 -14
  792. package/node_modules/uuid/dist/cjs/v6.d.ts +0 -4
  793. package/node_modules/uuid/dist/cjs/v6.js +0 -19
  794. package/node_modules/uuid/dist/cjs/v6ToV1.d.ts +0 -2
  795. package/node_modules/uuid/dist/cjs/v6ToV1.js +0 -13
  796. package/node_modules/uuid/dist/cjs/v7.d.ts +0 -9
  797. package/node_modules/uuid/dist/cjs/v7.js +0 -69
  798. package/node_modules/uuid/dist/cjs/validate.d.ts +0 -2
  799. package/node_modules/uuid/dist/cjs/validate.js +0 -7
  800. package/node_modules/uuid/dist/cjs/version.d.ts +0 -2
  801. package/node_modules/uuid/dist/cjs/version.js +0 -10
  802. package/node_modules/uuid/dist/cjs-browser/index.d.ts +0 -15
  803. package/node_modules/uuid/dist/cjs-browser/index.js +0 -31
  804. package/node_modules/uuid/dist/cjs-browser/max.d.ts +0 -2
  805. package/node_modules/uuid/dist/cjs-browser/max.js +0 -3
  806. package/node_modules/uuid/dist/cjs-browser/md5.d.ts +0 -2
  807. package/node_modules/uuid/dist/cjs-browser/md5.js +0 -137
  808. package/node_modules/uuid/dist/cjs-browser/native.d.ts +0 -4
  809. package/node_modules/uuid/dist/cjs-browser/native.js +0 -4
  810. package/node_modules/uuid/dist/cjs-browser/nil.d.ts +0 -2
  811. package/node_modules/uuid/dist/cjs-browser/nil.js +0 -3
  812. package/node_modules/uuid/dist/cjs-browser/package.json +0 -1
  813. package/node_modules/uuid/dist/cjs-browser/parse.d.ts +0 -2
  814. package/node_modules/uuid/dist/cjs-browser/parse.js +0 -11
  815. package/node_modules/uuid/dist/cjs-browser/regex.d.ts +0 -2
  816. package/node_modules/uuid/dist/cjs-browser/regex.js +0 -3
  817. package/node_modules/uuid/dist/cjs-browser/rng.d.ts +0 -1
  818. package/node_modules/uuid/dist/cjs-browser/rng.js +0 -14
  819. package/node_modules/uuid/dist/cjs-browser/sha1.d.ts +0 -2
  820. package/node_modules/uuid/dist/cjs-browser/sha1.js +0 -72
  821. package/node_modules/uuid/dist/cjs-browser/stringify.d.ts +0 -3
  822. package/node_modules/uuid/dist/cjs-browser/stringify.js +0 -39
  823. package/node_modules/uuid/dist/cjs-browser/types.d.ts +0 -21
  824. package/node_modules/uuid/dist/cjs-browser/types.js +0 -2
  825. package/node_modules/uuid/dist/cjs-browser/uuid-bin.js +0 -72
  826. package/node_modules/uuid/dist/cjs-browser/v1.d.ts +0 -11
  827. package/node_modules/uuid/dist/cjs-browser/v1.js +0 -87
  828. package/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +0 -2
  829. package/node_modules/uuid/dist/cjs-browser/v1ToV6.js +0 -13
  830. package/node_modules/uuid/dist/cjs-browser/v3.d.ts +0 -9
  831. package/node_modules/uuid/dist/cjs-browser/v3.js +0 -14
  832. package/node_modules/uuid/dist/cjs-browser/v35.d.ts +0 -7
  833. package/node_modules/uuid/dist/cjs-browser/v35.js +0 -41
  834. package/node_modules/uuid/dist/cjs-browser/v4.d.ts +0 -4
  835. package/node_modules/uuid/dist/cjs-browser/v4.js +0 -29
  836. package/node_modules/uuid/dist/cjs-browser/v5.d.ts +0 -9
  837. package/node_modules/uuid/dist/cjs-browser/v5.js +0 -14
  838. package/node_modules/uuid/dist/cjs-browser/v6.d.ts +0 -4
  839. package/node_modules/uuid/dist/cjs-browser/v6.js +0 -19
  840. package/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +0 -2
  841. package/node_modules/uuid/dist/cjs-browser/v6ToV1.js +0 -13
  842. package/node_modules/uuid/dist/cjs-browser/v7.d.ts +0 -9
  843. package/node_modules/uuid/dist/cjs-browser/v7.js +0 -69
  844. package/node_modules/uuid/dist/cjs-browser/validate.d.ts +0 -2
  845. package/node_modules/uuid/dist/cjs-browser/validate.js +0 -7
  846. package/node_modules/uuid/dist/cjs-browser/version.d.ts +0 -2
  847. package/node_modules/uuid/dist/cjs-browser/version.js +0 -10
  848. package/node_modules/uuid/dist/esm/bin/uuid +0 -2
  849. package/node_modules/uuid/dist/esm/index.d.ts +0 -15
  850. package/node_modules/uuid/dist/esm/index.js +0 -14
  851. package/node_modules/uuid/dist/esm/max.d.ts +0 -2
  852. package/node_modules/uuid/dist/esm/max.js +0 -1
  853. package/node_modules/uuid/dist/esm/md5.d.ts +0 -4
  854. package/node_modules/uuid/dist/esm/md5.js +0 -11
  855. package/node_modules/uuid/dist/esm/native.d.ts +0 -6
  856. package/node_modules/uuid/dist/esm/native.js +0 -2
  857. package/node_modules/uuid/dist/esm/nil.d.ts +0 -2
  858. package/node_modules/uuid/dist/esm/nil.js +0 -1
  859. package/node_modules/uuid/dist/esm/parse.d.ts +0 -2
  860. package/node_modules/uuid/dist/esm/parse.js +0 -9
  861. package/node_modules/uuid/dist/esm/regex.d.ts +0 -2
  862. package/node_modules/uuid/dist/esm/regex.js +0 -1
  863. package/node_modules/uuid/dist/esm/rng.d.ts +0 -1
  864. package/node_modules/uuid/dist/esm/rng.js +0 -10
  865. package/node_modules/uuid/dist/esm/sha1.d.ts +0 -4
  866. package/node_modules/uuid/dist/esm/sha1.js +0 -11
  867. package/node_modules/uuid/dist/esm/stringify.d.ts +0 -3
  868. package/node_modules/uuid/dist/esm/stringify.js +0 -35
  869. package/node_modules/uuid/dist/esm/types.d.ts +0 -21
  870. package/node_modules/uuid/dist/esm/uuid-bin.js +0 -70
  871. package/node_modules/uuid/dist/esm/v1.d.ts +0 -11
  872. package/node_modules/uuid/dist/esm/v1.js +0 -83
  873. package/node_modules/uuid/dist/esm/v1ToV6.d.ts +0 -2
  874. package/node_modules/uuid/dist/esm/v1ToV6.js +0 -10
  875. package/node_modules/uuid/dist/esm/v3.d.ts +0 -9
  876. package/node_modules/uuid/dist/esm/v3.js +0 -9
  877. package/node_modules/uuid/dist/esm/v35.d.ts +0 -7
  878. package/node_modules/uuid/dist/esm/v35.js +0 -36
  879. package/node_modules/uuid/dist/esm/v4.d.ts +0 -4
  880. package/node_modules/uuid/dist/esm/v4.js +0 -27
  881. package/node_modules/uuid/dist/esm/v5.d.ts +0 -9
  882. package/node_modules/uuid/dist/esm/v5.js +0 -9
  883. package/node_modules/uuid/dist/esm/v6.d.ts +0 -4
  884. package/node_modules/uuid/dist/esm/v6.js +0 -17
  885. package/node_modules/uuid/dist/esm/v6ToV1.d.ts +0 -2
  886. package/node_modules/uuid/dist/esm/v6ToV1.js +0 -10
  887. package/node_modules/uuid/dist/esm/v7.d.ts +0 -9
  888. package/node_modules/uuid/dist/esm/v7.js +0 -65
  889. package/node_modules/uuid/dist/esm/validate.d.ts +0 -2
  890. package/node_modules/uuid/dist/esm/validate.js +0 -5
  891. package/node_modules/uuid/dist/esm/version.d.ts +0 -2
  892. package/node_modules/uuid/dist/esm/version.js +0 -8
  893. package/node_modules/uuid/dist/esm-browser/index.d.ts +0 -15
  894. package/node_modules/uuid/dist/esm-browser/index.js +0 -14
  895. package/node_modules/uuid/dist/esm-browser/max.d.ts +0 -2
  896. package/node_modules/uuid/dist/esm-browser/max.js +0 -1
  897. package/node_modules/uuid/dist/esm-browser/md5.d.ts +0 -2
  898. package/node_modules/uuid/dist/esm-browser/md5.js +0 -135
  899. package/node_modules/uuid/dist/esm-browser/native.d.ts +0 -4
  900. package/node_modules/uuid/dist/esm-browser/native.js +0 -2
  901. package/node_modules/uuid/dist/esm-browser/nil.d.ts +0 -2
  902. package/node_modules/uuid/dist/esm-browser/nil.js +0 -1
  903. package/node_modules/uuid/dist/esm-browser/parse.d.ts +0 -2
  904. package/node_modules/uuid/dist/esm-browser/parse.js +0 -9
  905. package/node_modules/uuid/dist/esm-browser/regex.d.ts +0 -2
  906. package/node_modules/uuid/dist/esm-browser/regex.js +0 -1
  907. package/node_modules/uuid/dist/esm-browser/rng.d.ts +0 -1
  908. package/node_modules/uuid/dist/esm-browser/rng.js +0 -11
  909. package/node_modules/uuid/dist/esm-browser/sha1.d.ts +0 -2
  910. package/node_modules/uuid/dist/esm-browser/sha1.js +0 -70
  911. package/node_modules/uuid/dist/esm-browser/stringify.d.ts +0 -3
  912. package/node_modules/uuid/dist/esm-browser/stringify.js +0 -35
  913. package/node_modules/uuid/dist/esm-browser/types.d.ts +0 -21
  914. package/node_modules/uuid/dist/esm-browser/uuid-bin.js +0 -70
  915. package/node_modules/uuid/dist/esm-browser/v1.d.ts +0 -11
  916. package/node_modules/uuid/dist/esm-browser/v1.js +0 -83
  917. package/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +0 -2
  918. package/node_modules/uuid/dist/esm-browser/v1ToV6.js +0 -10
  919. package/node_modules/uuid/dist/esm-browser/v3.d.ts +0 -9
  920. package/node_modules/uuid/dist/esm-browser/v3.js +0 -9
  921. package/node_modules/uuid/dist/esm-browser/v35.d.ts +0 -7
  922. package/node_modules/uuid/dist/esm-browser/v35.js +0 -36
  923. package/node_modules/uuid/dist/esm-browser/v4.d.ts +0 -4
  924. package/node_modules/uuid/dist/esm-browser/v4.js +0 -27
  925. package/node_modules/uuid/dist/esm-browser/v5.d.ts +0 -9
  926. package/node_modules/uuid/dist/esm-browser/v5.js +0 -9
  927. package/node_modules/uuid/dist/esm-browser/v6.d.ts +0 -4
  928. package/node_modules/uuid/dist/esm-browser/v6.js +0 -17
  929. package/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +0 -2
  930. package/node_modules/uuid/dist/esm-browser/v6ToV1.js +0 -10
  931. package/node_modules/uuid/dist/esm-browser/v7.d.ts +0 -9
  932. package/node_modules/uuid/dist/esm-browser/v7.js +0 -65
  933. package/node_modules/uuid/dist/esm-browser/validate.d.ts +0 -2
  934. package/node_modules/uuid/dist/esm-browser/validate.js +0 -5
  935. package/node_modules/uuid/dist/esm-browser/version.d.ts +0 -2
  936. package/node_modules/uuid/dist/esm-browser/version.js +0 -8
  937. package/node_modules/uuid/package.json +0 -132
  938. package/vendor/aab-tool/LICENSE +0 -202
  939. package/vendor/aab-tool/README.txt +0 -1
  940. package/vendor/aab-tool/bundletool.jar +0 -0
  941. /package/{node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts → lib/bootstrap.d.ts} +0 -0
  942. /package/{node_modules/uuid/dist/cjs/uuid-bin.d.ts → lib/commands/test-init.d.ts} +0 -0
  943. /package/{node_modules/uuid/dist/esm-browser/types.js → lib/commands/test.d.ts} +0 -0
  944. /package/{node_modules/uuid/dist/esm-browser/uuid-bin.d.ts → lib/common/bootstrap.d.ts} +0 -0
  945. /package/{node_modules/uuid/dist/esm/types.js → lib/common/common-lib.d.ts} +0 -0
  946. /package/{node_modules/uuid/dist/esm/uuid-bin.d.ts → lib/common/mobile/ios/ios-device-product-name-mapper.d.ts} +0 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,2571 @@
1
+ ## [9.0.5](https://github.com/NativeScript/nativescript-cli/compare/v9.0.4...v9.0.5) (2026-03-06)
2
+
3
+
4
+ ### Security
5
+
6
+ * CWE-1333, CWE-78 ([#5976](https://github.com/NativeScript/nativescript-cli/issues/5976)) ([3942566](https://github.com/NativeScript/nativescript-cli/commit/3942566f78d2d21fccae2ec6f313f29cec92ea11))
7
+
8
+
9
+
10
+ ## [9.0.4](https://github.com/NativeScript/nativescript-cli/compare/v9.0.3...v9.0.4) (2026-02-27)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * file watcher with chokidar ([#5973](https://github.com/NativeScript/nativescript-cli/issues/5973)) ([92ec091](https://github.com/NativeScript/nativescript-cli/commit/92ec091d54d4621e0685ea119527f02111f72056))
16
+ * **security:** CVE-2025-13465, CVE-2026-27904, CVE-2026-26996, CVE-2025-59433 ([#5974](https://github.com/NativeScript/nativescript-cli/issues/5974)) ([c4064c9](https://github.com/NativeScript/nativescript-cli/commit/c4064c9d52bbc2b7faff35e2bea8d109b1c170be))
17
+ * visionos overrides for build flags ([#5967](https://github.com/NativeScript/nativescript-cli/issues/5967)) ([895ceb8](https://github.com/NativeScript/nativescript-cli/commit/895ceb8567ee139147643c43760487d46882f717))
18
+ * **widget:** handle configs with other SPMPackages ([#5972](https://github.com/NativeScript/nativescript-cli/issues/5972)) ([03ff1dc](https://github.com/NativeScript/nativescript-cli/commit/03ff1dcaf98b917cbd65c6739871a7be7a224c4b))
19
+
20
+
21
+ ## [9.0.3](https://github.com/NativeScript/nativescript-cli/compare/v9.0.2...v9.0.3) (2026-02-01)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * allow app spm to "override" plugin spm packages ([#5951](https://github.com/NativeScript/nativescript-cli/issues/5951)) ([33d44b5](https://github.com/NativeScript/nativescript-cli/commit/33d44b58af3f267168544b3f80719d4a1c607672))
27
+ * **vite:** incremental build file changes ([#5952](https://github.com/NativeScript/nativescript-cli/issues/5952)) ([9013634](https://github.com/NativeScript/nativescript-cli/commit/90136342348e9009d9f71ddab99c05a3d9e86775))
28
+ * **workspaces:** duplicate added frameworks ([#5949](https://github.com/NativeScript/nativescript-cli/issues/5949)) ([768a97c](https://github.com/NativeScript/nativescript-cli/commit/768a97cafeefc414a56697d1a4550115cb9cfc51))
29
+
30
+
31
+
32
+ ## [9.0.2](https://github.com/NativeScript/nativescript-cli/compare/v9.0.1...v9.0.2) (2026-01-04)
33
+
34
+
35
+ ### Bug Fixes
36
+
37
+ * vite build and prepare ([#5948](https://github.com/NativeScript/nativescript-cli/issues/5948)) ([e892f48](https://github.com/NativeScript/nativescript-cli/commit/e892f48ea86510b1aafbb739a42bfd834fbdc12e))
38
+
39
+
40
+
41
+ ## [9.0.1](https://github.com/NativeScript/nativescript-cli/compare/v9.0.0...v9.0.1) (2025-11-18)
42
+
43
+
44
+ ### Bug Fixes
45
+
46
+ * prevent error if nativescript.config entry is undefined ([#5919](https://github.com/NativeScript/nativescript-cli/issues/5919)) ([bfad89e](https://github.com/NativeScript/nativescript-cli/commit/bfad89ead225c881c46e2a6a4de042a1cb434323))
47
+
48
+
49
+
50
+ # [9.0.0](https://github.com/NativeScript/nativescript-cli/compare/v8.9.3...v9.0.0) (2025-11-17)
51
+
52
+
53
+ ### Bug Fixes
54
+
55
+ * **android:** livesync tool connect race condition ([#5857](https://github.com/NativeScript/nativescript-cli/issues/5857)) ([1daa553](https://github.com/NativeScript/nativescript-cli/commit/1daa5533d72408b2bba6773ddbd012f5284dc41f))
56
+ * clear all deprecated dependencies ([#5858](https://github.com/NativeScript/nativescript-cli/issues/5858)) ([d9bced3](https://github.com/NativeScript/nativescript-cli/commit/d9bced3427f620f78ca7da62066f836e4961b084))
57
+ * **config:** using set with undefined ([#5883](https://github.com/NativeScript/nativescript-cli/issues/5883)) ([b09510f](https://github.com/NativeScript/nativescript-cli/commit/b09510f5c994226030097332b6f0996c21d1d96c))
58
+ * remove lock from default clean ([#5881](https://github.com/NativeScript/nativescript-cli/issues/5881)) ([a1c39f6](https://github.com/NativeScript/nativescript-cli/commit/a1c39f6d7e9912b74c913a793adc3b6edf125574))
59
+ * **security:** axios 1.11.0 ([#5847](https://github.com/NativeScript/nativescript-cli/issues/5847)) ([0b08cb2](https://github.com/NativeScript/nativescript-cli/commit/0b08cb29bda03495a1e9a99e4bef100bc2d88838))
60
+ * **security:** xml2js and braces ([#5848](https://github.com/NativeScript/nativescript-cli/issues/5848)) ([debc85a](https://github.com/NativeScript/nativescript-cli/commit/debc85a584cdb305ff329bca12c255750e8a9658))
61
+ * update ios-sim-portable to version 4.5.1 ([#5850](https://github.com/NativeScript/nativescript-cli/issues/5850)) ([f575bdc](https://github.com/NativeScript/nativescript-cli/commit/f575bdcc39a1a749788aa04e4cc33d2d26f92489))
62
+ * **visionos:** build/prepare ([e40a1b8](https://github.com/NativeScript/nativescript-cli/commit/e40a1b8d6cfd055016ac2612ecccb771176766b0))
63
+
64
+
65
+ ### Features
66
+
67
+ * add config to help menu ([#5916](https://github.com/NativeScript/nativescript-cli/issues/5916)) ([f81499d](https://github.com/NativeScript/nativescript-cli/commit/f81499d4092426a801ac2a4bf9579a03c463a2b9))
68
+ * add Dependabot configuration ([#5859](https://github.com/NativeScript/nativescript-cli/issues/5859)) ([93a214c](https://github.com/NativeScript/nativescript-cli/commit/93a214c093c3aa5d47df6b19371c12b26d3c97ed))
69
+ * add Dependency Review Action workflow ([#5860](https://github.com/NativeScript/nativescript-cli/issues/5860)) ([1478ba9](https://github.com/NativeScript/nativescript-cli/commit/1478ba9b8d6cd987833dbd7108a19ed37c0f041f))
70
+ * android upgrades, bundletool to 1.18.2, kotlin to 2.2.20 ([#5917](https://github.com/NativeScript/nativescript-cli/issues/5917)) ([cc94b80](https://github.com/NativeScript/nativescript-cli/commit/cc94b80328ac22828509e71313848bb10d444150))
71
+ * **android:** api level 36 + start up emulator with unknown target versions ([#5842](https://github.com/NativeScript/nativescript-cli/issues/5842)) ([de2cb8c](https://github.com/NativeScript/nativescript-cli/commit/de2cb8c1e68bfbf0c7651a440bbaff72de27cf50))
72
+ * **android:** update default compileSdkVersion and buildToolsVersion to 35 ([#5849](https://github.com/NativeScript/nativescript-cli/issues/5849)) ([cca32f9](https://github.com/NativeScript/nativescript-cli/commit/cca32f99d644c176f61383866cd45979d6e1f6b2))
73
+ * config settings to use different bundlers ([#5837](https://github.com/NativeScript/nativescript-cli/issues/5837)) ([27e94e8](https://github.com/NativeScript/nativescript-cli/commit/27e94e8bececb837ce901e37e9b1c0d4581603dd))
74
+ * hooks command ([#5918](https://github.com/NativeScript/nativescript-cli/issues/5918)) ([87cbca9](https://github.com/NativeScript/nativescript-cli/commit/87cbca902f8a30f27b8db524d307fd40d808216a))
75
+ * **hooks:** support ES Modules ([#5843](https://github.com/NativeScript/nativescript-cli/issues/5843)) ([23c07aa](https://github.com/NativeScript/nativescript-cli/commit/23c07aa097750147432a8a823a4673c328df76fc))
76
+ * migration updates ([52e5749](https://github.com/NativeScript/nativescript-cli/commit/52e57499806431ee5e3919e9a7cd631e030481ac))
77
+ * replace chalk/ansi-colors/glob with Node.js built-ins ([#5853](https://github.com/NativeScript/nativescript-cli/issues/5853)) ([e562267](https://github.com/NativeScript/nativescript-cli/commit/e562267ce6a7d5cf2172679d6498b2ab79a9aff7))
78
+
79
+
80
+
81
+ ## [8.9.3](https://github.com/NativeScript/nativescript-cli/compare/v8.9.2...v8.9.3) (2025-07-16)
82
+
83
+
84
+ ### Bug Fixes
85
+
86
+ * **bundler:** include process.env first ([4df139d](https://github.com/NativeScript/nativescript-cli/commit/4df139dc83456ac98dc4cdae765b72a47a945f91))
87
+ * pass down process environment to webpack process ([#5844](https://github.com/NativeScript/nativescript-cli/issues/5844)) ([1e8b93f](https://github.com/NativeScript/nativescript-cli/commit/1e8b93fb0b8c5ac3080fdb5eecec5b7326859c81))
88
+
89
+
90
+
91
+ ## [8.9.2](https://github.com/NativeScript/nativescript-cli/compare/v8.9.1...v8.9.2) (2025-03-25)
92
+
93
+
94
+ ### Bug Fixes
95
+
96
+ * icon generator color type error ([#5838](https://github.com/NativeScript/nativescript-cli/issues/5838)) ([af81491](https://github.com/NativeScript/nativescript-cli/commit/af8149113844a7aebcd6bf66eeae73154ac7927b))
97
+ * remove --legacy-peer-deps flag on install ([#5839](https://github.com/NativeScript/nativescript-cli/issues/5839)) ([ca6fb68](https://github.com/NativeScript/nativescript-cli/commit/ca6fb68a96cbf4006885c878527c0743b3dae248))
98
+
99
+
100
+
101
+ ## [8.9.1](https://github.com/NativeScript/nativescript-cli/compare/v8.9.0...v8.9.1) (2025-03-05)
102
+
103
+
104
+ ### Bug Fixes
105
+
106
+ * support node < 22.14 ([#5834](https://github.com/NativeScript/nativescript-cli/issues/5834)) ([9c5fdb2](https://github.com/NativeScript/nativescript-cli/commit/9c5fdb24a826974d62ce72b74a13e5e419136d77))
107
+
108
+
109
+
110
+ # [8.9.0](https://github.com/NativeScript/nativescript-cli/compare/v8.8.3...v8.9.0) (2025-02-27)
111
+
112
+
113
+ ### Bug Fixes
114
+
115
+ * add webpack env data so that scripts can read it ([#5817](https://github.com/NativeScript/nativescript-cli/issues/5817)) ([bc23679](https://github.com/NativeScript/nativescript-cli/commit/bc23679c426858dc4a6824641123116a8720d33f))
116
+ * **android:** emulator ini file parsing ([#5824](https://github.com/NativeScript/nativescript-cli/issues/5824)) ([2f35b34](https://github.com/NativeScript/nativescript-cli/commit/2f35b347e1d9710f17862009784826cfb0c589aa))
117
+ * **android:** logging after app restart ([#5815](https://github.com/NativeScript/nativescript-cli/issues/5815)) ([86d9f29](https://github.com/NativeScript/nativescript-cli/commit/86d9f29ced188a8b7904a83f3c58f06131db8282))
118
+ * apple team id not being used when persisted to the platforms folder ([#5821](https://github.com/NativeScript/nativescript-cli/issues/5821)) ([4176e98](https://github.com/NativeScript/nativescript-cli/commit/4176e989cc132591b94d2a876fe72a3ab85a3527))
119
+ * ensure plugin path is defined to process configs ([d96fde1](https://github.com/NativeScript/nativescript-cli/commit/d96fde1f151e1565ac38d311b42a91b552d70d1c))
120
+ * ios-device-lib compiled with arm and x64 ([#5825](https://github.com/NativeScript/nativescript-cli/issues/5825)) ([9eac531](https://github.com/NativeScript/nativescript-cli/commit/9eac5314ac34ee1eea69d480534e1de7e3c99cd6))
121
+ * ios-mobileprovision-finder updates for profile location adjustments ([ea0a138](https://github.com/NativeScript/nativescript-cli/commit/ea0a1389bc91c5549744cf710bef7f471bcc9823))
122
+ * ios-mobileprovision-finder updates for windows ([c06e099](https://github.com/NativeScript/nativescript-cli/commit/c06e0995364769848e693ad513fcad8b6699029a))
123
+ * ns publish, apple authentication, appstore list ([#5820](https://github.com/NativeScript/nativescript-cli/issues/5820)) ([5e381d4](https://github.com/NativeScript/nativescript-cli/commit/5e381d435ee8e65d729b5683040cef0a9a03a71c))
124
+ * **windows:** APPDATA required ([#5823](https://github.com/NativeScript/nativescript-cli/issues/5823)) ([91eab28](https://github.com/NativeScript/nativescript-cli/commit/91eab28c982e98f7dec6ab3aa943900daed2f12a))
125
+
126
+
127
+ ### Features
128
+
129
+ * build flag to append generated suffix to bundles ([#5814](https://github.com/NativeScript/nativescript-cli/issues/5814)) ([d10b817](https://github.com/NativeScript/nativescript-cli/commit/d10b817f7428f7fc668b21c38302704592060823))
130
+ * custom android-studio path to support nixos using new env.NATIVESCRIPT_ANDROID_STUDIO_PATH ([#5816](https://github.com/NativeScript/nativescript-cli/issues/5816)) ([661b653](https://github.com/NativeScript/nativescript-cli/commit/661b653f39332859bb808cec5992c6b4fcbfe150))
131
+ * **ios:** 'ns widget ios' for single command widget generator ([#5829](https://github.com/NativeScript/nativescript-cli/issues/5829)) ([89d09d3](https://github.com/NativeScript/nativescript-cli/commit/89d09d3d27030ec98ce1e50b21be2d238c79f2e5))
132
+ * **ios:** allow collections of NativeSource to be included via nativescript.config ([#5830](https://github.com/NativeScript/nativescript-cli/issues/5830)) ([daa567c](https://github.com/NativeScript/nativescript-cli/commit/daa567caa7250d17cb567883a4753480dcb6b933))
133
+ * **ios:** multi target support for swift packages ([#5828](https://github.com/NativeScript/nativescript-cli/issues/5828)) ([2090491](https://github.com/NativeScript/nativescript-cli/commit/209049163b6235f6726230e8eec2f19908e893ea))
134
+ * plugins can now define their own nativescript.config for SPMPackage inclusion ([#5826](https://github.com/NativeScript/nativescript-cli/issues/5826)) ([b2bad0c](https://github.com/NativeScript/nativescript-cli/commit/b2bad0cfaaaea4d1aafddfdf1153e1f3e3afee5d))
135
+ * support solid with typescript template ([1b6202d](https://github.com/NativeScript/nativescript-cli/commit/1b6202db13eb585e342b72604028dd3e0aeef97f))
136
+
137
+
138
+
139
+ ## [8.8.3](https://github.com/NativeScript/nativescript-cli/compare/v8.8.2...v8.8.3) (2024-12-03)
140
+
141
+ * SPM package version now supports semver ranges
142
+ * `~1.0.0` => upToNextMinor
143
+ * `^1.0.0` => upToNextMajor
144
+ * `#hash` => specific commit hash
145
+ * `<branch>` => specific branch
146
+
147
+ ## [8.8.2](https://github.com/NativeScript/nativescript-cli/compare/v8.8.1...v8.8.2) (2024-08-28)
148
+
149
+
150
+ ### Bug Fixes
151
+
152
+ * don't quote executable in windows ([823565e](https://github.com/NativeScript/nativescript-cli/commit/823565e95102343449bc687387d43a5f223390b1))
153
+ * typings path separator on windows ([#5812](https://github.com/NativeScript/nativescript-cli/issues/5812)) ([25c3d67](https://github.com/NativeScript/nativescript-cli/commit/25c3d67ff92980b45326a4cc5043561bba393598))
154
+
155
+
156
+
157
+ ## [8.8.1](https://github.com/NativeScript/nativescript-cli/compare/v8.8.0...v8.8.1) (2024-08-19)
158
+
159
+
160
+ ### Bug Fixes
161
+
162
+ * quote windows command line arguments ([#5808](https://github.com/NativeScript/nativescript-cli/issues/5808)) ([bf9a6cd](https://github.com/NativeScript/nativescript-cli/commit/bf9a6cdbed227c876b8a94a13e3517e684dad924))
163
+
164
+
165
+ ### Features
166
+
167
+ * add android 35 support ([#5811](https://github.com/NativeScript/nativescript-cli/issues/5811)) ([abc7ab4](https://github.com/NativeScript/nativescript-cli/commit/abc7ab474024bda566374271e0497f4c73d78b4d))
168
+
169
+
170
+
171
+ # [8.8.0](https://github.com/NativeScript/nativescript-cli/compare/v8.7.2...v8.8.0) (2024-07-11)
172
+
173
+
174
+ ### Bug Fixes
175
+
176
+ * `ns config set` failure with prettier plugins ([67e68c6](https://github.com/NativeScript/nativescript-cli/commit/67e68c64aec9fcf180cbb91bcc1bfb1ee897094b))
177
+ * **android:** use more accurate PID detection on restart ([#5804](https://github.com/NativeScript/nativescript-cli/issues/5804)) ([6509773](https://github.com/NativeScript/nativescript-cli/commit/650977342c67056a1ac3138d3810739cab95d5d5))
178
+
179
+
180
+ ### Features
181
+
182
+ * ability to embed NativeScript into host Swift and Kotlin projects ([#5803](https://github.com/NativeScript/nativescript-cli/issues/5803)) ([42177c3](https://github.com/NativeScript/nativescript-cli/commit/42177c31bd034b6106500259b264db6347c5e21e))
183
+ * add support for custom platform 'projectName' from nativescript.config ([#2107](https://github.com/NativeScript/nativescript-cli/issues/2107)) ([#5801](https://github.com/NativeScript/nativescript-cli/issues/5801)) ([32f8fc5](https://github.com/NativeScript/nativescript-cli/commit/32f8fc5332cfe8deda9606346906a4fa179fe78d))
184
+ * gradle 8, kotlin 2 & updated bundletool ([#5799](https://github.com/NativeScript/nativescript-cli/issues/5799)) ([29acc76](https://github.com/NativeScript/nativescript-cli/commit/29acc76479646c1150440f9a4d0defa19faa74f0))
185
+ * migrate 8.8 and associated depedencies ([#5807](https://github.com/NativeScript/nativescript-cli/issues/5807)) ([9e9773f](https://github.com/NativeScript/nativescript-cli/commit/9e9773f481991e30ac9c0aaf7a3a5dcc947fc801))
186
+ * native add command to add native source files to the project ([#5806](https://github.com/NativeScript/nativescript-cli/issues/5806)) ([2f2d1e0](https://github.com/NativeScript/nativescript-cli/commit/2f2d1e0bfa5e3e41bba653de2393e9a2c169bd38))
187
+
188
+
189
+
190
+ ## [8.7.2](https://github.com/NativeScript/nativescript-cli/compare/v8.7.1...v8.7.2) (2024-05-28)
191
+
192
+ ### Bug Fixes
193
+
194
+ * fix `npm i -g nativescript` on npm 10.4.0+ ([9d2ec7c](https://github.com/NativeScript/nativescript-cli/commit/9d2ec7cb6a12ea10439ea287991812645a156473))
195
+
196
+ ### Features
197
+
198
+ * don't uninstall app by default ([bac14c0](https://github.com/NativeScript/nativescript-cli/commit/bac14c06568c7a0538618d9ca1e369a56dd272b5))
199
+
200
+
201
+
202
+ ## [8.7.1](https://github.com/NativeScript/nativescript-cli/compare/v8.7.0...v8.7.1) (2024-05-16)
203
+
204
+
205
+ ### Bug Fixes
206
+
207
+ * **windows:** make compatible with latest node patch levels ([#5802](https://github.com/NativeScript/nativescript-cli/issues/5802)) ([8795e98](https://github.com/NativeScript/nativescript-cli/commit/8795e98e7876d11ac0032135607fb13bf00d246d))
208
+
209
+
210
+ ### Features
211
+
212
+ * interactive typings generation for android ([#5798](https://github.com/NativeScript/nativescript-cli/issues/5798)) ([d3f2e70](https://github.com/NativeScript/nativescript-cli/commit/d3f2e70101d44a9bc8450c5d0b90419945c2604f))
213
+
214
+
215
+
216
+ # [8.7.0](https://github.com/NativeScript/nativescript-cli/compare/v8.6.5...v8.7.0) (2024-04-08)
217
+
218
+
219
+ ### Bug Fixes
220
+
221
+ * **autocomplete:** fix the generation of the autocomplete script and prevent duplication on enable/disable ([#5794](https://github.com/NativeScript/nativescript-cli/issues/5794)) ([7c87b49](https://github.com/NativeScript/nativescript-cli/commit/7c87b49bd3779ad4a43ebae044595e2bdac8b373))
222
+ * **debug-ios:** don't explicitly bind ws to `localhost` ([#5788](https://github.com/NativeScript/nativescript-cli/issues/5788)) ([280b10d](https://github.com/NativeScript/nativescript-cli/commit/280b10d3410d9b5340e7dd7e532a11e4cdd7bca5))
223
+ * **ios:** only allow IPHONEOS_DEPLOYMENT_TARGET to be explicitly set vs entire xcconfig ([ac8afcc](https://github.com/NativeScript/nativescript-cli/commit/ac8afcc70c68c8c8476278ec508265483635f105))
224
+ * **ios:** skip package validation on xcodebuild ([#5782](https://github.com/NativeScript/nativescript-cli/issues/5782)) ([e47cff4](https://github.com/NativeScript/nativescript-cli/commit/e47cff471ab25f7608360c8c0c94463a83116788))
225
+ * **plugins:** parse name issue with invalid plugins ([#5770](https://github.com/NativeScript/nativescript-cli/issues/5770)) ([f826248](https://github.com/NativeScript/nativescript-cli/commit/f82624892c1433ea1aefdbeb06b5bd53e954b8a1))
226
+ * remove python six requirement ([#5785](https://github.com/NativeScript/nativescript-cli/issues/5785)) ([25ae1f0](https://github.com/NativeScript/nativescript-cli/commit/25ae1f0842469697826c0061b499f55b54f0987d))
227
+ * tests ([13b0bdb](https://github.com/NativeScript/nativescript-cli/commit/13b0bdb808a4796ea0c68575fd41308db5ef840c))
228
+
229
+
230
+ ### Features
231
+
232
+ * add experimental bun package manager support ([#5791](https://github.com/NativeScript/nativescript-cli/issues/5791)) ([f758f6c](https://github.com/NativeScript/nativescript-cli/commit/f758f6cac3ed5e1ba6adeb9b68a683a21fdd0e07))
233
+ * add open ios/android ([#5779](https://github.com/NativeScript/nativescript-cli/issues/5779)) ([81b32bc](https://github.com/NativeScript/nativescript-cli/commit/81b32bcaa125d2914c4e3ad41068d7da9671635d))
234
+ * **ios:** ensure user defined xcconfig always takes priority ([#5784](https://github.com/NativeScript/nativescript-cli/issues/5784)) ([500d751](https://github.com/NativeScript/nativescript-cli/commit/500d75176cee0f5c5a5551ffcc1d4c00c7543b5a))
235
+ * provide appId to webpack config ([#5778](https://github.com/NativeScript/nativescript-cli/issues/5778)) ([e3ef37d](https://github.com/NativeScript/nativescript-cli/commit/e3ef37dc648e99ff09844e22e11c917f7d727cdf))
236
+ * support for solid/solidjs templates and migrations for 8.7 ([#5796](https://github.com/NativeScript/nativescript-cli/issues/5796)) ([cf788f0](https://github.com/NativeScript/nativescript-cli/commit/cf788f053fd976ee7dd62af2ac61bb1590498be0))
237
+ * visionOS support ([#5783](https://github.com/NativeScript/nativescript-cli/issues/5783)) ([6a6a832](https://github.com/NativeScript/nativescript-cli/commit/6a6a8322655b1dedadda912d712cf26ee6d51f56))
238
+
239
+
240
+
241
+ ## [8.6.4](https://github.com/NativeScript/nativescript-cli/compare/v8.6.3...v8.6.4) (2024-01-17)
242
+
243
+
244
+ ### Bug Fixes
245
+
246
+ * skip log-source-maps for large files ([#5780](https://github.com/NativeScript/nativescript-cli/issues/5780)) ([c53b4e9](https://github.com/NativeScript/nativescript-cli/commit/c53b4e9111f3da98547ec273c92a73ead89aca13))
247
+
248
+
249
+
250
+ ## [8.6.1](https://github.com/NativeScript/nativescript-cli/compare/v8.6.0...v8.6.1) (2023-10-23)
251
+
252
+
253
+ ### Bug Fixes
254
+
255
+ * remove cli-table aliasing ([#5763](https://github.com/NativeScript/nativescript-cli/issues/5763)) ([dd1640c](https://github.com/NativeScript/nativescript-cli/commit/dd1640ca15235be82d945fe6401e3993a6a4442a))
256
+ * resolve pacote regression with creating app from a template directory ([#5766](https://github.com/NativeScript/nativescript-cli/issues/5766)) ([2cd7a62](https://github.com/NativeScript/nativescript-cli/commit/2cd7a62ee8535f72c578e681806ca441c752c357))
257
+ * setup docs links ([#5762](https://github.com/NativeScript/nativescript-cli/issues/5762)) ([b229fdf](https://github.com/NativeScript/nativescript-cli/commit/b229fdf4eb4d942fce5734166e02c1b4b193cdb7))
258
+
259
+
260
+
261
+ # [8.6.0](https://github.com/NativeScript/nativescript-cli/compare/v8.5.3...v8.6.0) (2023-10-10)
262
+
263
+
264
+ ### Bug Fixes
265
+
266
+ * bump resolve-package-path to fix aliased module resolution ([3307155](https://github.com/NativeScript/nativescript-cli/commit/33071556385e9a1ec8945e66eb57b5f1ef744c28))
267
+ * check if interactive before attaching key commands ([27d3940](https://github.com/NativeScript/nativescript-cli/commit/27d394030fec6c39dd58138411a65b80def7fcb8))
268
+ * get framework name from Info.plist ([#5759](https://github.com/NativeScript/nativescript-cli/issues/5759)) ([6bc6ca9](https://github.com/NativeScript/nativescript-cli/commit/6bc6ca91422b6e6d9c7b5dbc4457c69ec58b74f0))
269
+ * hash plugin files after prepare ([#5753](https://github.com/NativeScript/nativescript-cli/issues/5753)) ([ecf1959](https://github.com/NativeScript/nativescript-cli/commit/ecf19599eda49dbbdb0d01333880e736bb02d222))
270
+ * **ios-device-lib:** use 0.9.3 with device core handling ([5cc76f4](https://github.com/NativeScript/nativescript-cli/commit/5cc76f4ad890b3f8e79bfdcd64d6e9842baf081d))
271
+ * **logs:** android log detection fixes ([b5cc32e](https://github.com/NativeScript/nativescript-cli/commit/b5cc32ece0ec7e38fd084ea3398abca2fedc0a9a))
272
+ * **logs:** correctly trim ios logs + fix tests ([be1e737](https://github.com/NativeScript/nativescript-cli/commit/be1e737a7457d4e35eda76619369a52b88d0dcab))
273
+ * **logs:** don't trim leading whitespace ([f522401](https://github.com/NativeScript/nativescript-cli/commit/f522401e03322c328e7859cea2881af73f6889fe))
274
+ * use valid interface ([a35dfa6](https://github.com/NativeScript/nativescript-cli/commit/a35dfa6a4841e01efd9dbc85b66048be90bcee1c))
275
+
276
+
277
+ ### Features
278
+
279
+ * add key commands ([5dbc780](https://github.com/NativeScript/nativescript-cli/commit/5dbc780f3b5e216669092db3cb413fa0fc25f53e))
280
+ * allow android plugins to have cpp code ([#5758](https://github.com/NativeScript/nativescript-cli/issues/5758)) ([c5f7b85](https://github.com/NativeScript/nativescript-cli/commit/c5f7b85e55c76eadb9697efc554814a8ed31b1ab))
281
+ * allow running on visionOS ([#5745](https://github.com/NativeScript/nativescript-cli/issues/5745)) ([f6a0fdd](https://github.com/NativeScript/nativescript-cli/commit/f6a0fdd14ee409e791fa75de52cd6f85154db3cb))
282
+ * **angular:** use 16.2.0 on ns update ([a31b3bb](https://github.com/NativeScript/nativescript-cli/commit/a31b3bb881a74e7d46eb30e172c145dd9536e0ad))
283
+ * **extension:** initial per-extension provisioning ([#5749](https://github.com/NativeScript/nativescript-cli/issues/5749)) ([c564e18](https://github.com/NativeScript/nativescript-cli/commit/c564e189b36334a2f8a7a7fc57e911b9139cb358))
284
+ * **extensions:** add extension podfile and setup extension with provision ([#5751](https://github.com/NativeScript/nativescript-cli/issues/5751)) ([ba3293c](https://github.com/NativeScript/nativescript-cli/commit/ba3293c174155b1143e87662ed49c978e9cac32d))
285
+ * **extensions:** allow seperate release/debug build configuration ([#5741](https://github.com/NativeScript/nativescript-cli/issues/5741)) ([fdcc98e](https://github.com/NativeScript/nativescript-cli/commit/fdcc98e9fc45786fd362444dad2fa1d458d09cb6))
286
+ * **ios:** always override xcconfig with user values ([#5735](https://github.com/NativeScript/nativescript-cli/issues/5735)) ([5b88e06](https://github.com/NativeScript/nativescript-cli/commit/5b88e06404bf910da966ec1a7969f13c8f843fe4))
287
+ * **logs:** improve android logging ([#5755](https://github.com/NativeScript/nativescript-cli/issues/5755)) ([8c5ef04](https://github.com/NativeScript/nativescript-cli/commit/8c5ef043bc8355e5ce421dbc4ee02efd78e06caa))
288
+ * **spm:** add support for local SPM packages ([#5748](https://github.com/NativeScript/nativescript-cli/issues/5748)) ([c40e217](https://github.com/NativeScript/nativescript-cli/commit/c40e2177ecbc452d124a6d6f750d1bfeb9de7e50))
289
+
290
+
291
+
292
+ ## [8.5.3](https://github.com/NativeScript/nativescript-cli/compare/v8.5.2...v8.5.3) (2023-04-12)
293
+
294
+
295
+ ### Bug Fixes
296
+
297
+ * correctly merge IPHONEOS_DEPLOYMENT_TARGET in xcconfigs ([#5728](https://github.com/NativeScript/nativescript-cli/issues/5728)) ([e6c09c0](https://github.com/NativeScript/nativescript-cli/commit/e6c09c0048534f6079634291706b0b38ac193a6c))
298
+ * hooks not being called ([#5729](https://github.com/NativeScript/nativescript-cli/issues/5729)) ([c35673e](https://github.com/NativeScript/nativescript-cli/commit/c35673eb9ed02116e1286351ca7a711d6ee231e7))
299
+ * migrate - safeguard possibly null values ([#5730](https://github.com/NativeScript/nativescript-cli/issues/5730)) ([68d9373](https://github.com/NativeScript/nativescript-cli/commit/68d9373aec1427a71e1f6236fff4f8084c33a421))
300
+
301
+
302
+
303
+ ## [8.5.2](https://github.com/NativeScript/nativescript-cli/compare/v8.5.1...v8.5.2) (2023-04-06)
304
+
305
+
306
+ ### Features
307
+
308
+ * clean multiple projects ([#5726](https://github.com/NativeScript/nativescript-cli/issues/5726)) ([e39e8db](https://github.com/NativeScript/nativescript-cli/commit/e39e8dbea725bbb541c9f76fc7b8723bf204d423))
309
+
310
+
311
+
312
+ ## [8.5.1](https://github.com/NativeScript/nativescript-cli/compare/v8.5.0...v8.5.1) (2023-03-29)
313
+
314
+
315
+ ### Reverts
316
+
317
+ * "fix: build plugins using same gradle config structure as apps ([#5671](https://github.com/NativeScript/nativescript-cli/issues/5671))" ([2c2c964](https://github.com/NativeScript/nativescript-cli/commit/2c2c964c791a831f091a5a10432d4b9f6266e5d4))
318
+
319
+
320
+
321
+ # [8.5.0](https://github.com/NativeScript/nativescript-cli/compare/v8.4.0...v8.5.0) (2023-03-28)
322
+
323
+
324
+ ### Bug Fixes
325
+
326
+ * **publish:** various apple publish/sign-in fixes ([#5718](https://github.com/NativeScript/nativescript-cli/issues/5718)) ([1c27c2b](https://github.com/NativeScript/nativescript-cli/commit/1c27c2bf17a7df1fcfa434b7c04fda3a41f38a34))
327
+ * build plugins using same gradle config structure as apps ([#5671](https://github.com/NativeScript/nativescript-cli/issues/5671)) ([40e459a](https://github.com/NativeScript/nativescript-cli/commit/40e459ac2669bed5a1b661f47336691cc8d0b997))
328
+ * **android:** support unsigned apks ([#5706](https://github.com/NativeScript/nativescript-cli/issues/5706)) ([32d3a0f](https://github.com/NativeScript/nativescript-cli/commit/32d3a0fe4a83943c2580b42c1e1536236a3d6164))
329
+ * **doctor:** check for python3 instead of python ([f21156c](https://github.com/NativeScript/nativescript-cli/commit/f21156c8d02964308f503dcdf8f9dc2764745b4e))
330
+
331
+
332
+ ### Features
333
+
334
+ * **migrate:** 8.5.0 migrations ([#5725](https://github.com/NativeScript/nativescript-cli/issues/5725)) ([b11357d](https://github.com/NativeScript/nativescript-cli/commit/b11357d1c1c7ee717acd43fbccee568367d77016))
335
+ * support generating android adaptive icons ([#5667](https://github.com/NativeScript/nativescript-cli/issues/5667)) ([73694bd](https://github.com/NativeScript/nativescript-cli/commit/73694bd447625f3df91f999c66e13e9ddc6fb01e))
336
+ * **profiling:** generate chrome compatible timeline data ([#5686](https://github.com/NativeScript/nativescript-cli/issues/5686)) ([0569873](https://github.com/NativeScript/nativescript-cli/commit/0569873139576c3264c631699d9357a96d2d4dbf))
337
+ * experimental SPM support ([#5721](https://github.com/NativeScript/nativescript-cli/issues/5721)) ([1443240](https://github.com/NativeScript/nativescript-cli/commit/14432403857354a8281b8fd1c1d3b4c2f6659403))
338
+ * experimental yarn2+ support ([#5701](https://github.com/NativeScript/nativescript-cli/issues/5701)) ([363db96](https://github.com/NativeScript/nativescript-cli/commit/363db96d7a07245cf1635a2dc22b7a2110941f29))
339
+
340
+
341
+
342
+ # [8.4.0](https://github.com/NativeScript/nativescript-cli/compare/v8.3.3...v8.4.0) (2022-11-30)
343
+
344
+
345
+ ### Bug Fixes
346
+
347
+ * get `targetSdkVersion` from project ext ([#5656](https://github.com/NativeScript/nativescript-cli/issues/5656)) ([7574be2](https://github.com/NativeScript/nativescript-cli/commit/7574be2f4cd19b3f9ed28bf351f59ed22f11d7ae))
348
+ * handle unknown/undefined platform edge case ([#5694](https://github.com/NativeScript/nativescript-cli/issues/5694)) ([aa3de73](https://github.com/NativeScript/nativescript-cli/commit/aa3de73193356eedc8ba1c68c9ae9e62b3902832))
349
+ * hmr doesn't work properly in paths with the character '.' ([#5703](https://github.com/NativeScript/nativescript-cli/issues/5703)) ([7a312a2](https://github.com/NativeScript/nativescript-cli/commit/7a312a2113796a75d4fa22541249526bd4ef2dd6))
350
+ * only include EXCLUDED_ARCHS workaround in xcode 12 ([#5705](https://github.com/NativeScript/nativescript-cli/issues/5705)) ([3e430cf](https://github.com/NativeScript/nativescript-cli/commit/3e430cffb52e5f210d3e32e293b9f464f2fc75b6))
351
+ * **testing:** pin karma-jasmine to 4.0.2 ([#5695](https://github.com/NativeScript/nativescript-cli/issues/5695)) ([a5bbac7](https://github.com/NativeScript/nativescript-cli/commit/a5bbac7d32c0a60ea3426b3fbd9b795402d757d1)), closes [#5690](https://github.com/NativeScript/nativescript-cli/issues/5690)
352
+
353
+
354
+ ### Features
355
+
356
+ * **doctor:** more informative android compile SDK messages ([#5697](https://github.com/NativeScript/nativescript-cli/issues/5697)) ([cfaa882](https://github.com/NativeScript/nativescript-cli/commit/cfaa882dd42d0d2447efb597442359ed19d9665d))
357
+ * include-settings.gradle plugin ([#5693](https://github.com/NativeScript/nativescript-cli/issues/5693)) ([6155ff7](https://github.com/NativeScript/nativescript-cli/commit/6155ff7f40c37c1183f9cf66b3ea0a464fb6497c))
358
+ * pass in tempPlugin flag during plugin build ([#5691](https://github.com/NativeScript/nativescript-cli/issues/5691)) ([645e9ea](https://github.com/NativeScript/nativescript-cli/commit/645e9ea516063db5da230fbd08db7d9fe37ab971))
359
+ * **migrations:** use Angular 14.2 ([3dc0323](https://github.com/NativeScript/nativescript-cli/commit/3dc03231c7edc7efce9f97445a211f7657c8da1e))
360
+
361
+
362
+
363
+ ## [8.3.3](https://github.com/NativeScript/nativescript-cli/compare/v8.3.2...v8.3.3) (2022-08-22)
364
+
365
+
366
+ ### Bug Fixes
367
+
368
+ * **console:** disable long line splitting ([be8274d](https://github.com/NativeScript/nativescript-cli/commit/be8274d7dce5f9d43a4aa3bf78d6beb414115dfc))
369
+ * **preview:** windows spawn error ([f737579](https://github.com/NativeScript/nativescript-cli/commit/f73757929550f54fca4509f597da4dd746297ba7))
370
+
371
+
372
+ ### Features
373
+
374
+ * ensure App_Resources exists before running ([#5689](https://github.com/NativeScript/nativescript-cli/issues/5689)) ([ba8dd58](https://github.com/NativeScript/nativescript-cli/commit/ba8dd58e289c0e2b8a3bc847a4c8a4e5d1bc0d73))
375
+
376
+
377
+
378
+ ## [8.3.2](https://github.com/NativeScript/nativescript-cli/compare/v8.3.1...v8.3.2) (2022-07-31)
379
+
380
+
381
+ ### Bug Fixes
382
+
383
+ * **logger:** don't trim text if maxWidth is NaN or <10 ([5415582](https://github.com/NativeScript/nativescript-cli/commit/541558270d54be32f2d38f0848a958e0cbca2a0b))
384
+
385
+
386
+
387
+ ## [8.3.1](https://github.com/NativeScript/nativescript-cli/compare/v8.3.0...v8.3.1) (2022-07-29)
388
+
389
+
390
+ ### Bug Fixes
391
+
392
+ * use correct path to emulator executable ([#5663](https://github.com/NativeScript/nativescript-cli/issues/5663)) ([d49b666](https://github.com/NativeScript/nativescript-cli/commit/d49b6664f216456f84bfbf3dc5f1b362588e1951))
393
+
394
+
395
+ ### Features
396
+
397
+ * **migrate:** update to 8.3 ([#5685](https://github.com/NativeScript/nativescript-cli/issues/5685)) ([50de194](https://github.com/NativeScript/nativescript-cli/commit/50de1946986b634bd3a9cf6d06d5f9b0c93a3caf))
398
+
399
+
400
+
401
+ # [8.3.0](https://github.com/NativeScript/nativescript-cli/compare/v8.2.3...v8.3.0) (2022-07-25)
402
+
403
+
404
+ ### Bug Fixes
405
+
406
+ * **ios-publish:** Update API calls to get applications ([#5678](https://github.com/NativeScript/nativescript-cli/issues/5678)) ([4abe2c9](https://github.com/NativeScript/nativescript-cli/commit/4abe2c901829b28f1e1fa26009996db96af06047))
407
+ * **unit-test-runner:** node 18 binding family ([#5673](https://github.com/NativeScript/nativescript-cli/issues/5673)) ([1da28bc](https://github.com/NativeScript/nativescript-cli/commit/1da28bcb506650a0c43f468a43f4d577a7d9d3d4))
408
+ * ios log filtering ([#5679](https://github.com/NativeScript/nativescript-cli/issues/5679)) ([8446000](https://github.com/NativeScript/nativescript-cli/commit/8446000ec7580fdc2aff4d7154edd174bf2d1d52))
409
+
410
+
411
+ ### Features
412
+
413
+ * bump @nativescript/doctor version ([893989b](https://github.com/NativeScript/nativescript-cli/commit/893989b250c6372937a67f4c55ac05e92c1f26a8))
414
+ * cleaner log output ([#5680](https://github.com/NativeScript/nativescript-cli/issues/5680)) ([5330207](https://github.com/NativeScript/nativescript-cli/commit/53302079e30580242e7bf4f9cad88f9b37d1a789))
415
+ * **doctor:** add android-33 to supported sdks ([b8f15a0](https://github.com/NativeScript/nativescript-cli/commit/b8f15a06ffab855ed7f77b580b6421650bbed52a))
416
+ * **migrate:** use Angular 14.1 ([#5681](https://github.com/NativeScript/nativescript-cli/issues/5681)) ([d5d4206](https://github.com/NativeScript/nativescript-cli/commit/d5d4206c4041e10e4abb0e11ae6f7a9c8c89412e))
417
+ * add watchAction hooks ([#5661](https://github.com/NativeScript/nativescript-cli/issues/5661)) ([bb3a696](https://github.com/NativeScript/nativescript-cli/commit/bb3a6965792cc565ab6d516c30a640ac98313ee7))
418
+ * alias --simulator to --emulator ([e9d9d5a](https://github.com/NativeScript/nativescript-cli/commit/e9d9d5a878c455d9a69cc1416fe21d07c1c5e5c4))
419
+ * re-enable preview command ([#5676](https://github.com/NativeScript/nativescript-cli/issues/5676)) ([98124e7](https://github.com/NativeScript/nativescript-cli/commit/98124e70a8867ad6161a199ee11129ca6b269eb4))
420
+
421
+
422
+
423
+ ## [8.2.3](https://github.com/NativeScript/nativescript-cli/compare/v8.2.2...v8.2.3) (2022-03-23)
424
+
425
+
426
+ ### Bug Fixes
427
+
428
+ * **doctor:** improve target and sdk compatibility detection on <8.2 ([#5648](https://github.com/NativeScript/nativescript-cli/issues/5648)) ([fa257dd](https://github.com/NativeScript/nativescript-cli/commit/fa257dd455ca55374cf419d638ac74166dc727db))
429
+ * **ios-publish:** changes in Apple API to set Team ([#5653](https://github.com/NativeScript/nativescript-cli/issues/5653)) ([5ceb254](https://github.com/NativeScript/nativescript-cli/commit/5ceb254f317d0cb186bfc31b89e2d2b28625094c))
430
+ * **spawn:** resolve relative paths to prevent ENOENT errors ([37d576b](https://github.com/NativeScript/nativescript-cli/commit/37d576bcde7352b7fa6c937d5e765e10486fedf3)), closes [#5649](https://github.com/NativeScript/nativescript-cli/issues/5649)
431
+ * **test:** node17 resolves localhost to ipv6 instead of ipv4 ([81cb9c3](https://github.com/NativeScript/nativescript-cli/commit/81cb9c37cdd4e24115be79b24b68dfbaf8cdcfd2))
432
+
433
+
434
+
435
+ ## [8.2.2](https://github.com/NativeScript/nativescript-cli/compare/v8.2.1...v8.2.2) (2022-03-09)
436
+
437
+
438
+ ### Bug Fixes
439
+
440
+ * topological dependency sorting ([#5647](https://github.com/NativeScript/nativescript-cli/issues/5647)) ([9d8d967](https://github.com/NativeScript/nativescript-cli/commit/9d8d967096fba41325ee9082eed02a880cb803f6))
441
+
442
+
443
+ ### Features
444
+
445
+ * read gradle versions from local runtime first ([#5646](https://github.com/NativeScript/nativescript-cli/issues/5646)) ([1b9cde3](https://github.com/NativeScript/nativescript-cli/commit/1b9cde38f2272ae142520141469962fbe5f55954))
446
+
447
+
448
+
449
+ # [8.2.1](https://github.com/NativeScript/nativescript-cli/compare/v8.2.0...v8.2.1) (2022-03-08)
450
+
451
+ ### Bug Fixes
452
+
453
+ * node17 debugger can't attach ([fc84d92](https://github.com/NativeScript/nativescript-cli/commit/fc84d92d9c102ddaca036c0cda1800b8e41fd653))
454
+
455
+ # [8.2.0](https://github.com/NativeScript/nativescript-cli/compare/v8.1.5...v8.2.0) (2022-03-08)
456
+
457
+
458
+ ### Bug Fixes
459
+
460
+ * remove deprecated property ([f7b4a74](https://github.com/NativeScript/nativescript-cli/commit/f7b4a74f58cb4b5fb8c6baa6f6b9d75512f21c1f))
461
+ * **pnpm:** escape + in podfile path string ([#5638](https://github.com/NativeScript/nativescript-cli/issues/5638)) ([a11cace](https://github.com/NativeScript/nativescript-cli/commit/a11cace045856499a44637cd3052501ef34b5757))
462
+ * add a missing newline to the clean command ([#5611](https://github.com/NativeScript/nativescript-cli/issues/5611)) ([46c396d](https://github.com/NativeScript/nativescript-cli/commit/46c396d6caecb88aae9774157e86d1f6bd7a6d1f))
463
+ * correctly allow plugins build to detect before-plugins.gradle ([#5631](https://github.com/NativeScript/nativescript-cli/issues/5631)) ([3b42042](https://github.com/NativeScript/nativescript-cli/commit/3b420428e80594661968313ec63bd44089f960b0))
464
+ * import performance from perf_hooks ([fade332](https://github.com/NativeScript/nativescript-cli/commit/fade3326765bac5cd9bbbda9efe54320e34360a9))
465
+ * move additionalPathsToClean under cli object ([d16a932](https://github.com/NativeScript/nativescript-cli/commit/d16a932c1d660bf34f1bb0135899471f1de08260))
466
+ * write project settings to gradle.properties ([#5640](https://github.com/NativeScript/nativescript-cli/issues/5640)) ([e0ed7f2](https://github.com/NativeScript/nativescript-cli/commit/e0ed7f2dd7e23d5fbb4fe3185e0b7f85534018d7))
467
+ * **doctor:** Cannot read property 'toLowerCase' of null ([#5604](https://github.com/NativeScript/nativescript-cli/issues/5604)) ([0be52e9](https://github.com/NativeScript/nativescript-cli/commit/0be52e914540898fa0cdc679edfa303192c812f7))
468
+ * **test:** exit test command if karma finishes execution ([#5618](https://github.com/NativeScript/nativescript-cli/issues/5618)) ([9f73e96](https://github.com/NativeScript/nativescript-cli/commit/9f73e9640357ebe6736dfd52e0ad5997c5c0b339))
469
+
470
+
471
+ ### Features
472
+
473
+ * --gradlePath argument support ([#5628](https://github.com/NativeScript/nativescript-cli/issues/5628)) ([387c7c0](https://github.com/NativeScript/nativescript-cli/commit/387c7c0f2eaefcf942e9d6087edaa2a9c42ce064))
474
+ * `--gradleArgs` option to pass gradle parameters ([#5630](https://github.com/NativeScript/nativescript-cli/issues/5630)) ([02d179a](https://github.com/NativeScript/nativescript-cli/commit/02d179a358297d099f1e2d2377b042db374edcad))
475
+ * build transient native dependencies ([#5643](https://github.com/NativeScript/nativescript-cli/issues/5643)) ([1435eef](https://github.com/NativeScript/nativescript-cli/commit/1435eef272aced36e7f97a355ff5c7ea936f94e7))
476
+ * bump migrate versions for 8.2.0 ([#5645](https://github.com/NativeScript/nativescript-cli/issues/5645)) ([6726ccc](https://github.com/NativeScript/nativescript-cli/commit/6726ccc3816afd17369633eb94e2c28735984efa))
477
+ * compute and log build time ([#5602](https://github.com/NativeScript/nativescript-cli/issues/5602)) ([fb0a7b8](https://github.com/NativeScript/nativescript-cli/commit/fb0a7b80a0710226b57627246df7470c67ad4c8a))
478
+ * improved --json output from devices ([#5565](https://github.com/NativeScript/nativescript-cli/issues/5565)) ([8446795](https://github.com/NativeScript/nativescript-cli/commit/84467951331982cc001504e078df23865bb25f31))
479
+ * reduce aar size by removing R.class and BuildConfig.class ([#5644](https://github.com/NativeScript/nativescript-cli/issues/5644)) ([9ad80bf](https://github.com/NativeScript/nativescript-cli/commit/9ad80bfedf1f9e8c726ef8a546da2132c2b40897))
480
+ * **android:** add gradle 7+ support ([#5614](https://github.com/NativeScript/nativescript-cli/issues/5614)) ([be6706a](https://github.com/NativeScript/nativescript-cli/commit/be6706af99c89765f3773e7e324a70037b2ec7b8))
481
+ * **clean:** allow overriding pathsToClean in config ([b33507d](https://github.com/NativeScript/nativescript-cli/commit/b33507d703ce416e0c89423d55a2ad9d8f085a31))
482
+ * **typings:** support --aar inputs ([#5641](https://github.com/NativeScript/nativescript-cli/issues/5641)) ([67fdd0a](https://github.com/NativeScript/nativescript-cli/commit/67fdd0afd05492543e74584f54986a274131c723))
483
+ * launch last used simulator instead of iPhone 6 ([289317d](https://github.com/NativeScript/nativescript-cli/commit/289317d3bc3e78fe31de477f01bd8f452dd68512))
484
+
485
+
486
+ ### Performance Improvements
487
+
488
+ * doctor cache runtimeVersion ([#5642](https://github.com/NativeScript/nativescript-cli/issues/5642)) ([3063550](https://github.com/NativeScript/nativescript-cli/commit/306355042065435348c77fefe163429c6164c643))
489
+
490
+
491
+
492
+ ## [8.1.5](https://github.com/NativeScript/nativescript-cli/compare/v8.1.4...v8.1.5) (2021-11-26)
493
+
494
+
495
+ ### Bug Fixes
496
+
497
+ * **clean:** report failures to remove item ([#5601](https://github.com/NativeScript/nativescript-cli/issues/5601)) ([3902257](https://github.com/NativeScript/nativescript-cli/commit/3902257b335a0b652bda6ebfcf35585c02e05fb9))
498
+ * **config:** handle invalid/unset projectDir ([b844498](https://github.com/NativeScript/nativescript-cli/commit/b8444986f34d1552b68a9257a4a4224d1f799abe))
499
+ * **migrate:** create polyfills.ts if missing for angular projects ([#5593](https://github.com/NativeScript/nativescript-cli/issues/5593)) ([8728335](https://github.com/NativeScript/nativescript-cli/commit/87283355bba2e0a7bfa487fee15dfa82798db755))
500
+
501
+
502
+ ### Features
503
+
504
+ * `ns -v --json` to skip update checks ([d7330b0](https://github.com/NativeScript/nativescript-cli/commit/d7330b0cdb4ca392b8b3f6c81b49ae1a0eb3a07a))
505
+ * github issue forms ([#5609](https://github.com/NativeScript/nativescript-cli/issues/5609)) ([676630b](https://github.com/NativeScript/nativescript-cli/commit/676630bcb86203c532c52dd004d2ccd78cc17e6b))
506
+ * nativescript-envinfo package ([#5600](https://github.com/NativeScript/nativescript-cli/issues/5600)) ([fd3b3a8](https://github.com/NativeScript/nativescript-cli/commit/fd3b3a86de02e512471158aa1fe501ec49c5c6e7))
507
+ * unit-test-runner 3.0 with optional coverage report handling ([#5610](https://github.com/NativeScript/nativescript-cli/issues/5610)) ([ae7f286](https://github.com/NativeScript/nativescript-cli/commit/ae7f28634ca3de0167c309d2019cf7f78e3fc2c5))
508
+ * **config:** cli.packageManager override support ([#5596](https://github.com/NativeScript/nativescript-cli/issues/5596)) ([3c03579](https://github.com/NativeScript/nativescript-cli/commit/3c035794489c26fe9100b30d011b7eaa94f4b353))
509
+ * **hooks:** project persistent hooks in config ([#5597](https://github.com/NativeScript/nativescript-cli/issues/5597)) ([97bbe33](https://github.com/NativeScript/nativescript-cli/commit/97bbe3388fa150c7818fbe24e4220c9a6238267b))
510
+
511
+
512
+
513
+ ## [8.1.4](https://github.com/NativeScript/nativescript-cli/compare/v8.1.3...v8.1.4) (2021-10-11)
514
+
515
+
516
+ ### Bug Fixes
517
+
518
+ * **migrate:** loosen up migrate condition for missing dependencies ([96af85b](https://github.com/NativeScript/nativescript-cli/commit/96af85bc985ee0881bfc95eae96182d0638dbe01))
519
+ * runtime version detection for tags ([#5587](https://github.com/NativeScript/nativescript-cli/issues/5587)) ([a0663f4](https://github.com/NativeScript/nativescript-cli/commit/a0663f4e8733eee748060f47d7358b4a37b4ce98)), closes [#5574](https://github.com/NativeScript/nativescript-cli/issues/5574)
520
+
521
+
522
+
523
+ ## [8.1.3](https://github.com/NativeScript/nativescript-cli/compare/v8.1.2...v8.1.3) (2021-09-30)
524
+
525
+
526
+ ### Bug Fixes
527
+
528
+ * **ios-publish:** update API ([#5580](https://github.com/NativeScript/nativescript-cli/issues/5580)) ([63acaa6](https://github.com/NativeScript/nativescript-cli/commit/63acaa6defdf610aecbd49abd59ef3185948720c))
529
+ * **m1:** cocoapods command when installed natively ([#5584](https://github.com/NativeScript/nativescript-cli/issues/5584)) ([65dcf01](https://github.com/NativeScript/nativescript-cli/commit/65dcf01bb213c5c7b0581a1f92d7aba7fb3aec0c))
530
+ * **metadata-filtering:** only add when there are items to add ([ab9fc0f](https://github.com/NativeScript/nativescript-cli/commit/ab9fc0f9b7fd3a4adde10c28d538518d61039107))
531
+ * **test-execution-service:** canStartKarma condition ([c68d58e](https://github.com/NativeScript/nativescript-cli/commit/c68d58edff8023875d4b973d7b5c65528e550b66))
532
+ * fix source map path ([#5583](https://github.com/NativeScript/nativescript-cli/issues/5583)) ([8ecb335](https://github.com/NativeScript/nativescript-cli/commit/8ecb33541cdf405f5769b7cfa7385423e512ae80))
533
+ * require.resolve for packages with exports field in package.json ([#5579](https://github.com/NativeScript/nativescript-cli/issues/5579)) ([56ed35b](https://github.com/NativeScript/nativescript-cli/commit/56ed35b71323f25759d36e1e1750ed9cd267a66d))
534
+ * source-map appPath prefix detection ([77a8ce7](https://github.com/NativeScript/nativescript-cli/commit/77a8ce77d1d3110b67c858b19651abfde71afe8c))
535
+
536
+
537
+ ### Features
538
+
539
+ * allow plugin blacklist metadata ([#5582](https://github.com/NativeScript/nativescript-cli/issues/5582)) ([5e9de51](https://github.com/NativeScript/nativescript-cli/commit/5e9de518785717ae44aff85c900d06e1dbebf882))
540
+
541
+
542
+
543
+ ## [8.1.2](https://github.com/NativeScript/nativescript-cli/compare/v8.1.1...v8.1.2) (2021-09-15)
544
+
545
+
546
+ ### Bug Fixes
547
+
548
+ * **http-client:** requests with no proxy configured ([#5573](https://github.com/NativeScript/nativescript-cli/issues/5573)) ([d5121b4](https://github.com/NativeScript/nativescript-cli/commit/d5121b4082ed49dfc5c8994005d938223d114f25))
549
+
550
+
551
+
552
+ ## [8.1.1](https://github.com/NativeScript/nativescript-cli/compare/v8.1.0...v8.1.1) (2021-09-12)
553
+
554
+
555
+ ### Bug Fixes
556
+
557
+ * launching android 11 and 12 emulators ([f32642e](https://github.com/NativeScript/nativescript-cli/commit/f32642e8fa2eaf799c872da96a7240805fc164ad))
558
+ * order package.json keys the right way on project creation ([e68dcc8](https://github.com/NativeScript/nativescript-cli/commit/e68dcc89826704d83cf03bdfc9f7112ecfc092cd))
559
+ * **create-project:** local template handling ([4f8d644](https://github.com/NativeScript/nativescript-cli/commit/4f8d6440538f5687ef198b61605c4479da0e41f3))
560
+ * gradle build error when building some plugins ([58a0e60](https://github.com/NativeScript/nativescript-cli/commit/58a0e60bcbb8f0ee4732a4947cb2a78241fc065f))
561
+ * runtime versions with a range ([e0bbf1b](https://github.com/NativeScript/nativescript-cli/commit/e0bbf1b4548b235c9638cdf9688035c99e4552f9))
562
+
563
+
564
+ ### Features
565
+
566
+ * **create-project:** allow --force to forcefully create git repo inside another one ([30d42d2](https://github.com/NativeScript/nativescript-cli/commit/30d42d253e13d071c33aba7aded7affd5695fe32))
567
+ * **create-project:** cleaner post-create message ([7c8741e](https://github.com/NativeScript/nativescript-cli/commit/7c8741eae122983b495dc82bb559e540684cc315))
568
+ * **create-project:** detect git repo before initializing and --no-git support ([6d9b7df](https://github.com/NativeScript/nativescript-cli/commit/6d9b7df1284ec8f7332f32d14079c6858a8859f1))
569
+ * new ns update handling ([bff78e3](https://github.com/NativeScript/nativescript-cli/commit/bff78e32b0a5cf5cd2d01f6ff35c46b9373b7fe7))
570
+ * updated migration rules ([b2d51da](https://github.com/NativeScript/nativescript-cli/commit/b2d51da373c4d81ffa75bb313c55ac50362beeb3))
571
+
572
+
573
+ ### Performance Improvements
574
+
575
+ * implement a memoize decorator with smart caching ([6521671](https://github.com/NativeScript/nativescript-cli/commit/6521671f17e8c4dc16d7c6c3378d1814b6ab1cb4))
576
+
577
+
578
+
579
+ # [8.1.0](https://github.com/NativeScript/nativescript-cli/compare/v8.0.2...v8.1.0) (2021-09-08)
580
+
581
+
582
+ ### Bug Fixes
583
+
584
+ * autocompletion aliases ([1640eee](https://github.com/NativeScript/nativescript-cli/commit/1640eee23b4592f12500b88162de2f562ee5a8f8))
585
+ * CFBundleIdentifier override warning ([e62784e](https://github.com/NativeScript/nativescript-cli/commit/e62784ed802cb3f63cb2b157980af11d7b91b2c1))
586
+ * check for not installed dependencies using require.resolve ([1fc817f](https://github.com/NativeScript/nativescript-cli/commit/1fc817f0220507ae5454fa56e150ab4969410e88))
587
+ * xcodebuild destination warning ([#5564](https://github.com/NativeScript/nativescript-cli/issues/5564)) ([943eec6](https://github.com/NativeScript/nativescript-cli/commit/943eec6d94410a4f57435d90b59e6c62a39d8634))
588
+ * config detection ([404a511](https://github.com/NativeScript/nativescript-cli/commit/404a5114614826c1d32d63d20a212890b555f2d8))
589
+ * enable terminal cursor when Ctrl+C during a prompt ([cfb80a2](https://github.com/NativeScript/nativescript-cli/commit/cfb80a2ab7a64e9c18c45385894403397c636f73))
590
+ * properly handle missing App_Resources ([#5536](https://github.com/NativeScript/nativescript-cli/issues/5536)) ([0a112f3](https://github.com/NativeScript/nativescript-cli/commit/0a112f30043ac2c2516033bcf4275af0ec55d502))
591
+ * race condition when getting iOS inspector port ([#5544](https://github.com/NativeScript/nativescript-cli/issues/5544)) ([8f8dd83](https://github.com/NativeScript/nativescript-cli/commit/8f8dd83dc6042e0f67952981da4cde5d11a582c7)), closes [#3701](https://github.com/NativeScript/nativescript-cli/issues/3701)
592
+ * remove ns preview note on project creation ([db53037](https://github.com/NativeScript/nativescript-cli/commit/db53037fbeffe739db95766681e4afad98681816))
593
+ * windows path issue ([fa90b60](https://github.com/NativeScript/nativescript-cli/commit/fa90b60e0cbc30b633db6d94e69e71ad9dad0266))
594
+ * **migrate:** nativescript-unit-test-runner & missing basePath ([#5537](https://github.com/NativeScript/nativescript-cli/issues/5537)) ([0be8aca](https://github.com/NativeScript/nativescript-cli/commit/0be8acab10792d031471d4f0d613547b4e91a3ad))
595
+ * **typings:** spawn to work with Windows as well ([d6e431e](https://github.com/NativeScript/nativescript-cli/commit/d6e431e3a65f4b960d12caf124b7179eafcfa02b))
596
+
597
+
598
+ ### Features
599
+
600
+ * add `--config` option ([#5554](https://github.com/NativeScript/nativescript-cli/issues/5554)) ([9f844ea](https://github.com/NativeScript/nativescript-cli/commit/9f844ea59140801fb7c83886a7ecb31ddd63e3e6))
601
+ * **livesync:** support livesync in remote machine ([#5560](https://github.com/NativeScript/nativescript-cli/issues/5560)) ([4e94ad4](https://github.com/NativeScript/nativescript-cli/commit/4e94ad44945ce4490fad3e558f0ed55ef429310c))
602
+ * **plugins:** allow plugins to use kotlin files ([#5555](https://github.com/NativeScript/nativescript-cli/issues/5555)) ([37e2dbb](https://github.com/NativeScript/nativescript-cli/commit/37e2dbb92b0ea6876f2281cbd9ff850d7700a551))
603
+ * allow passing cli args when running in the iOS Simulator ([#5518](https://github.com/NativeScript/nativescript-cli/issues/5518)) ([6b700b4](https://github.com/NativeScript/nativescript-cli/commit/6b700b4090b181db0d0dc627573bb9b90750f61a))
604
+ * allow tests to run on monorepos ([#5547](https://github.com/NativeScript/nativescript-cli/issues/5547)) ([bfa8e91](https://github.com/NativeScript/nativescript-cli/commit/bfa8e91de63206b15b0408c7cf4dd9ae0fedff13))
605
+ * default template version based on cli major ([#5517](https://github.com/NativeScript/nativescript-cli/issues/5517)) ([2f1d876](https://github.com/NativeScript/nativescript-cli/commit/2f1d876c9008f18f19a9a130f28296ea5910fa0d))
606
+ * ignoring native dependencies ([#5524](https://github.com/NativeScript/nativescript-cli/issues/5524)) ([6ba5cd6](https://github.com/NativeScript/nativescript-cli/commit/6ba5cd6d79d9e88dcb66e7d6c7defba2d41ec601))
607
+ * ns typings command ([#5551](https://github.com/NativeScript/nativescript-cli/issues/5551)) ([4703cef](https://github.com/NativeScript/nativescript-cli/commit/4703cef32b779bb195429c459f7efb00a5ce7806))
608
+
609
+
610
+ ### Performance Improvements
611
+
612
+ * remove duplicate plugins data ([#5563](https://github.com/NativeScript/nativescript-cli/issues/5563)) ([7d80902](https://github.com/NativeScript/nativescript-cli/commit/7d80902161e24ae92d0459620bdaa46077d1ffde))
613
+
614
+
615
+
616
+ ## [8.0.2](https://github.com/NativeScript/nativescript-cli/compare/v8.0.1...v8.0.2) (2021-05-11)
617
+
618
+
619
+ ### Bug Fixes
620
+
621
+ * test init and karma conf for 8.0 with webpack5 ([#5528](https://github.com/NativeScript/nativescript-cli/issues/5528)) ([03d68d6](https://github.com/NativeScript/nativescript-cli/commit/03d68d6572f896c9cba6b95cb1bf204ce27bfc2b))
622
+
623
+
624
+ ### Features
625
+
626
+ * --env.sourceMap custom values ([f32773d](https://github.com/NativeScript/nativescript-cli/commit/f32773db5899e3133395f1e27f82cead27c0a7b3))
627
+
628
+
629
+
630
+ ## [8.0.1](https://github.com/NativeScript/nativescript-cli/compare/v8.0.0...v8.0.1) (2021-04-01)
631
+
632
+
633
+ ### Bug Fixes
634
+
635
+ * compat message updates ([7c475e6](https://github.com/NativeScript/nativescript-cli/commit/7c475e6de9c11e0cf428ee83390db0db89bf4249))
636
+ * empty main fields during migrate ([7403e4d](https://github.com/NativeScript/nativescript-cli/commit/7403e4d16343df110d32d02653c188b8ac67978b))
637
+
638
+
639
+ ### Features
640
+
641
+ * enable ESLint plugin in migrate ([d8537fa](https://github.com/NativeScript/nativescript-cli/commit/d8537faa1cc21f2fb6665aa2c136d129c589363a))
642
+ * handle --env <name> flags ([23fe6a3](https://github.com/NativeScript/nativescript-cli/commit/23fe6a3cc9b8f7624fffeb0be39301ebcc234291))
643
+
644
+
645
+
646
+ # [8.0.0](https://github.com/NativeScript/nativescript-cli/compare/v7.2.1...v8.0.0) (2021-03-31)
647
+
648
+
649
+ ### Bug Fixes
650
+
651
+ * handle caret and tilde in runtime versions ([#5501](https://github.com/NativeScript/nativescript-cli/issues/5501)) ([04eba0d](https://github.com/NativeScript/nativescript-cli/commit/04eba0deb50637a6402ee2bfb14243aad597ce0f))
652
+
653
+
654
+ ### Features
655
+
656
+ * ns8 ([#5508](https://github.com/NativeScript/nativescript-cli/issues/5508)) ([10a2d2e](https://github.com/NativeScript/nativescript-cli/commit/10a2d2e3b4b6a6856b1f1898dbf9b180c0dd649b))
657
+ * platform specific doctor ([#5505](https://github.com/NativeScript/nativescript-cli/issues/5505)) ([ff04446](https://github.com/NativeScript/nativescript-cli/commit/ff04446906f8d2b16d3d92e40ce2e97dc3aa98eb))
658
+
659
+
660
+
661
+ ## [7.2.1](https://github.com/NativeScript/nativescript-cli/compare/v7.2.0...v7.2.1) (2021-03-11)
662
+
663
+
664
+ ### Bug Fixes
665
+
666
+ * npm7 peerDependecies ([5e2688f](https://github.com/NativeScript/nativescript-cli/commit/5e2688fd38dae9cd293e08afaa67018dc0d271c2))
667
+ * ns update default to latest version ([#5497](https://github.com/NativeScript/nativescript-cli/issues/5497)) ([04202dc](https://github.com/NativeScript/nativescript-cli/commit/04202dcb8f828939205ccf58fb8121304e21d61a))
668
+
669
+
670
+
671
+ # [7.2.0](https://github.com/NativeScript/nativescript-cli/compare/v7.1.2...v7.2.0) (2021-02-05)
672
+
673
+
674
+ ### Bug Fixes
675
+
676
+ * default appPath in new projects ([#5466](https://github.com/NativeScript/nativescript-cli/issues/5466)) ([0675896](https://github.com/NativeScript/nativescript-cli/commit/0675896bf86327092b08377e9523c7be0fdc1332))
677
+ * handle permissions error on directory creation ([#5480](https://github.com/NativeScript/nativescript-cli/issues/5480)) ([58e833d](https://github.com/NativeScript/nativescript-cli/commit/58e833d64787bbd29b3792b7550e8923ed141f52))
678
+ * tgz runtime resolution ([101bfae](https://github.com/NativeScript/nativescript-cli/commit/101bfae8279f81912512fd6ac7839e033e41f8e5))
679
+ * update setup requirements link ([#5459](https://github.com/NativeScript/nativescript-cli/issues/5459)) ([c8447cd](https://github.com/NativeScript/nativescript-cli/commit/c8447cdda5bc5c56a4021798ffe7cdfaedd8ebb7))
680
+
681
+
682
+ ### Features
683
+
684
+ * -v checking for updates ([#5461](https://github.com/NativeScript/nativescript-cli/issues/5461)) ([2d6683c](https://github.com/NativeScript/nativescript-cli/commit/2d6683c984a032f631dc80bc935393ac347a4baa))
685
+ * initialize git repo on project create ([#5468](https://github.com/NativeScript/nativescript-cli/issues/5468)) ([9f78c15](https://github.com/NativeScript/nativescript-cli/commit/9f78c15d031931d557dc7cfcf0561ce88eeac2ff))
686
+ * warn invalid platform folders ([#5463](https://github.com/NativeScript/nativescript-cli/issues/5463)) ([fde4403](https://github.com/NativeScript/nativescript-cli/commit/fde440342f2b2205982506891533f58db5418e64))
687
+
688
+
689
+ ### Performance Improvements
690
+
691
+ * initialize project data only if uninitialized ([#5478](https://github.com/NativeScript/nativescript-cli/issues/5478)) ([27c2f0c](https://github.com/NativeScript/nativescript-cli/commit/27c2f0cdfd1ea0a662e66551b86a3d8e4f630395))
692
+ * validate update version before backup ([#5479](https://github.com/NativeScript/nativescript-cli/issues/5479)) ([d312f14](https://github.com/NativeScript/nativescript-cli/commit/d312f14e819ac5194eab9a7e5c7a19a980ed3fe4))
693
+
694
+
695
+
696
+ ## [7.1.2](https://github.com/NativeScript/nativescript-cli/compare/v7.1.1...v7.1.2) (2021-01-04)
697
+
698
+
699
+ ### Bug Fixes
700
+
701
+ * prompter returning undefined instead of value ([#5457](https://github.com/NativeScript/nativescript-cli/issues/5457)) ([4cc4bca](https://github.com/NativeScript/nativescript-cli/commit/4cc4bcac62abbe328ddc9abb4816f0ed733c5269))
702
+
703
+
704
+
705
+ ## [7.1.1](https://github.com/NativeScript/nativescript-cli/compare/v7.1.0...v7.1.1) (2020-12-30)
706
+
707
+
708
+ ### Bug Fixes
709
+
710
+ * prompter returning index instead of value ([c1d5a27](https://github.com/NativeScript/nativescript-cli/commit/c1d5a271a0b689d1e734e55363dbc55015ef102a))
711
+
712
+
713
+
714
+ # [7.1.0](https://github.com/NativeScript/nativescript-cli/compare/v7.0.12...v7.1.0) (2020-12-29)
715
+
716
+
717
+ ### Features
718
+
719
+ * **logs:** support external sourcemaps from `.map` files ([#5434](https://github.com/NativeScript/nativescript-cli/issues/5434)) ([de678cf](https://github.com/NativeScript/nativescript-cli/commit/de678cff9f9478f8f7960fc412984cc3d1921898))
720
+ * fonts command ([#5452](https://github.com/NativeScript/nativescript-cli/issues/5452)) ([a6b0e3c](https://github.com/NativeScript/nativescript-cli/commit/a6b0e3cce55c6c7b6cecfffb9b9f231d48c5820b))
721
+ * vue-ts-template ([#5453](https://github.com/NativeScript/nativescript-cli/issues/5453)) ([7cdaed7](https://github.com/NativeScript/nativescript-cli/commit/7cdaed74dba0d8c171fa43ae1597f803ed83cd73))
722
+
723
+
724
+
725
+ ## [7.0.12](https://github.com/NativeScript/nativescript-cli/compare/v7.0.11...v7.0.12) (2020-12-19)
726
+
727
+
728
+ ### Bug Fixes
729
+
730
+ * Big Sur - iTunes is not installed ([799bb76](https://github.com/NativeScript/nativescript-cli/commit/799bb76aec76f6595d744614719f57a863d557aa)), closes [#5342](https://github.com/NativeScript/nativescript-cli/issues/5342)
731
+ * CFBundleName cannot be changed ([#5427](https://github.com/NativeScript/nativescript-cli/issues/5427)) ([ca32dc2](https://github.com/NativeScript/nativescript-cli/commit/ca32dc2f6b46b93be9df8d216a7d8ecbee200f1e))
732
+ * ns update version null ([#5441](https://github.com/NativeScript/nativescript-cli/issues/5441)) ([6de0c3e](https://github.com/NativeScript/nativescript-cli/commit/6de0c3e513da0b91f4deef84748417a842c4bbf0)), closes [#5440](https://github.com/NativeScript/nativescript-cli/issues/5440)
733
+ * remove iTunesValidator ([#5439](https://github.com/NativeScript/nativescript-cli/issues/5439)) ([6b3da6e](https://github.com/NativeScript/nativescript-cli/commit/6b3da6e3c84bd2bfb69f26041866736e7208fb83))
734
+
735
+
736
+ ### Performance Improvements
737
+
738
+ * use prompts instead of inquirer ([#5443](https://github.com/NativeScript/nativescript-cli/issues/5443)) ([ab24ece](https://github.com/NativeScript/nativescript-cli/commit/ab24ece0aaf5ad38b574c52bdd753728a1b6d72b))
739
+
740
+
741
+
742
+ ## [7.0.11](https://github.com/NativeScript/nativescript-cli/compare/v7.0.10...v7.0.11) (2020-10-21)
743
+
744
+
745
+ ### Bug Fixes
746
+
747
+ * **plugin-build:** invalid path argument ([1fc3893](https://github.com/NativeScript/nativescript-cli/commit/1fc3893e5bff66816d195d28aeafa01f2649ba5d)), closes [#5387](https://github.com/NativeScript/nativescript-cli/issues/5387)
748
+ * asset generation alpha value ([#5420](https://github.com/NativeScript/nativescript-cli/issues/5420)) ([becbe60](https://github.com/NativeScript/nativescript-cli/commit/becbe6076ae2ad2bdd56a1bc6c5ee9b538240d04))
749
+
750
+
751
+ ### Features
752
+
753
+ * add svelte support ([#5418](https://github.com/NativeScript/nativescript-cli/issues/5418)) ([08a0d91](https://github.com/NativeScript/nativescript-cli/commit/08a0d91775e9504410fb898c34fa7c6b8d514a2a))
754
+ * migration rules for svelte-native ([#5372](https://github.com/NativeScript/nativescript-cli/issues/5372)) ([c5db5fe](https://github.com/NativeScript/nativescript-cli/commit/c5db5feff0069e8ae82bbfe0e770fe6c70ee42bc))
755
+
756
+
757
+
758
+ ## [7.0.10](https://github.com/NativeScript/nativescript-cli/compare/7.0.9...7.0.10) (2020-10-03)
759
+
760
+
761
+ ### Bug Fixes
762
+
763
+ * **ios:** remove VALID_ARCHS from cocoapods for xcode 12 ([#5407](https://github.com/NativeScript/nativescript-cli/issues/5407)) ([03ecac9](https://github.com/NativeScript/nativescript-cli/commit/03ecac9dcde06f361f59ae990139906dc96a45f0))
764
+
765
+
766
+
767
+ ## [7.0.9](https://github.com/NativeScript/nativescript-cli/compare/v7.0.9-rc.2...v7.0.9) (2020-10-03)
768
+
769
+
770
+ ### Bug Fixes
771
+
772
+ * exclude unsupported architectures from cocoapods ([#5405](https://github.com/NativeScript/nativescript-cli/issues/5405)) ([e866d70](https://github.com/NativeScript/nativescript-cli/commit/e866d709b8518161db4166d3ba0fe7c65e505d36))
773
+ * platform sometimes not in lower case ([#5406](https://github.com/NativeScript/nativescript-cli/issues/5406)) ([21f48ab](https://github.com/NativeScript/nativescript-cli/commit/21f48abaa0a16363867f0715e3166f84479bdad8)), closes [#5391](https://github.com/NativeScript/nativescript-cli/issues/5391)
774
+
775
+
776
+ ### Features
777
+
778
+ * config manipulation commands ([#5402](https://github.com/NativeScript/nativescript-cli/issues/5402)) ([25410b7](https://github.com/NativeScript/nativescript-cli/commit/25410b74a411bfa04d0aa968d47e2bd5a3c2cd1a))
779
+
780
+
781
+
782
+ ## [7.0.8](https://github.com/NativeScript/nativescript-cli/compare/v7.0.7...v7.0.8) (2020-09-12)
783
+
784
+
785
+ ### Bug Fixes
786
+
787
+ * **migrate:** filter out keys from invalid nested package.json ([685d3c9](https://github.com/NativeScript/nativescript-cli/commit/685d3c9d67eea93ac919d799c999354d83032412))
788
+ * try use emitted packagejson's main field ([9641bea](https://github.com/NativeScript/nativescript-cli/commit/9641bea992e05978dbb64d28dc7d60bf14ea2f76))
789
+
790
+
791
+
792
+ ## [7.0.7](https://github.com/NativeScript/nativescript-cli/compare/v7.0.6...v7.0.7) (2020-09-09)
793
+
794
+
795
+ ### Bug Fixes
796
+
797
+ * platform clean not adding the platform back ([#5383](https://github.com/NativeScript/nativescript-cli/issues/5383)) ([daea022](https://github.com/NativeScript/nativescript-cli/commit/daea022875c996e1d521238d6587c2e45a1f8336)), closes [#5365](https://github.com/NativeScript/nativescript-cli/issues/5365)
798
+ * **doctor:** cannot read property 'filter' of null ([#5374](https://github.com/NativeScript/nativescript-cli/issues/5374)) ([dd09547](https://github.com/NativeScript/nativescript-cli/commit/dd095473daca8436979e8dd95d87f69c1fbf5f9c)), closes [#5366](https://github.com/NativeScript/nativescript-cli/issues/5366)
799
+
800
+
801
+ ### Features
802
+
803
+ * clean up legacy nsconfig if created for bw compat ([#5380](https://github.com/NativeScript/nativescript-cli/issues/5380)) ([233091b](https://github.com/NativeScript/nativescript-cli/commit/233091b2d33447b9e5b060c05d19dcb95c9f7431))
804
+ * migrate tsconfig.json for ns7 projects ([#5378](https://github.com/NativeScript/nativescript-cli/issues/5378)) ([8491b07](https://github.com/NativeScript/nativescript-cli/commit/8491b072210bf6db4007d7737ae0d875624c5147))
805
+ * pass current CLI public lib path to webpack env ([#5381](https://github.com/NativeScript/nativescript-cli/issues/5381)) ([6f91984](https://github.com/NativeScript/nativescript-cli/commit/6f91984c90ac65786e5679cadf98341cccabb84e))
806
+
807
+
808
+
809
+ ## [7.0.6](https://github.com/NativeScript/nativescript-cli/compare/v7.0.5...v7.0.6) (2020-09-04)
810
+
811
+ ### Bug Fixes
812
+
813
+ * Forced gradle scripts to LF instead of CRLF
814
+
815
+ ## [7.0.5](https://github.com/NativeScript/nativescript-cli/compare/v7.0.4...v7.0.5) (2020-09-04)
816
+
817
+
818
+ ### Bug Fixes
819
+
820
+ * account for platform specific ids from package.json ([6f64d20](https://github.com/NativeScript/nativescript-cli/commit/6f64d20e149a3e6899f84dc257ed7db7fbe41aef))
821
+ * app id migration when using separate ids ([06e238f](https://github.com/NativeScript/nativescript-cli/commit/06e238f175c4b5edaffa04d8f73f96fddcf0550c))
822
+ * missing gradle properties option useAndroidX ([#5369](https://github.com/NativeScript/nativescript-cli/issues/5369)) ([d0916ce](https://github.com/NativeScript/nativescript-cli/commit/d0916cebdb88a22a85c883225ed189f5479f6d78))
823
+ * pnpm support for installing dev deps ([d863107](https://github.com/NativeScript/nativescript-cli/commit/d863107e7211899e4cdfc71986051ede63c3f464))
824
+
825
+
826
+ ### Features
827
+
828
+ * improved migrations ([b5f66d9](https://github.com/NativeScript/nativescript-cli/commit/b5f66d9ca9de24921d7b0340d5fdf9efebf1f1e9))
829
+
830
+
831
+ ## [7.0.4](https://github.com/NativeScript/nativescript-cli/compare/v7.0.3...v7.0.4) (2020-09-04)
832
+
833
+
834
+ ### Bug Fixes
835
+
836
+ * various fixes ([f796781](https://github.com/NativeScript/nativescript-cli/commit/f79678120f93c723fe04699d5b545266e824598c))
837
+
838
+
839
+
840
+ ## [7.0.3](https://github.com/NativeScript/nativescript-cli/compare/v7.0.2...v7.0.3) (2020-09-04)
841
+
842
+
843
+ ### Bug Fixes
844
+
845
+ * ENOENT reading from non existent nativescript.config.js ([e063be9](https://github.com/NativeScript/nativescript-cli/commit/e063be964ae98df557f8615947dc58bf783cd41d))
846
+
847
+
848
+ ### Features
849
+
850
+ * improved migrations for app path and resource paths ([d1729cf](https://github.com/NativeScript/nativescript-cli/commit/d1729cfee78c2e2b0d183651acf67faddf8ed27c))
851
+
852
+
853
+
854
+ ## [7.0.2](https://github.com/NativeScript/nativescript-cli/compare/v7.0.1...v7.0.2) (2020-09-04)
855
+
856
+
857
+ ### Bug Fixes
858
+
859
+ * --help ([419ecda](https://github.com/NativeScript/nativescript-cli/commit/419ecdae3428bff0d4da0ad7c6a14cfb48af567b))
860
+ * project detection ([95812b8](https://github.com/NativeScript/nativescript-cli/commit/95812b8203a01312aa33e6143e6316775b271d58))
861
+ * update should update runtime versions ([5e15627](https://github.com/NativeScript/nativescript-cli/commit/5e15627be81f164444b0525dbd0a322185b46d6d))
862
+
863
+
864
+ ### Features
865
+
866
+ * auto format config after change with prettier + detect user prettier config ([b882ac8](https://github.com/NativeScript/nativescript-cli/commit/b882ac871278eb6155be48eeeffe281d8be7970a))
867
+
868
+
869
+
870
+ ## [7.0.1](https://github.com/NativeScript/nativescript-cli/compare/v7.0.0...v7.0.1) (2020-09-04)
871
+
872
+
873
+ ### Bug Fixes
874
+
875
+ * version format to use v instead of @ ([3fca107](https://github.com/NativeScript/nativescript-cli/commit/3fca107b31d914d307565ea39e8e01533af7eadb))
876
+
877
+
878
+
879
+ # [7.0.0](https://github.com/NativeScript/nativescript-cli/compare/v6.7.8...v7.0.0) (2020-09-04)
880
+
881
+
882
+ ### Bug Fixes
883
+
884
+ * broken test due to missing dependency ([21839ff](https://github.com/NativeScript/nativescript-cli/commit/21839ff106ca0977e737ae0bc0a1c6aa1176e03e))
885
+ * failing tests ([82f5c5a](https://github.com/NativeScript/nativescript-cli/commit/82f5c5a3e71932d0426cad46f7f34fcd693c06f1))
886
+ * failing tests + config service stub ([aea3714](https://github.com/NativeScript/nativescript-cli/commit/aea37144535fc79a07a3ff17e9ad841a88a270a3))
887
+ * global Error extension and Function injection ([ed5b8d3](https://github.com/NativeScript/nativescript-cli/commit/ed5b8d32583573cf85301ce9e10fb80ae3d9a325))
888
+ * plugin service tests and config reading ([aaee65e](https://github.com/NativeScript/nativescript-cli/commit/aaee65e1274bccd414d3821d4155962f8ba0ea2c))
889
+ * properly resolve bundle id ([6d97a5f](https://github.com/NativeScript/nativescript-cli/commit/6d97a5f5f28d86b163ebae20b03e8a0bd104eeab))
890
+ * runtime name/version parse ([2cda1e6](https://github.com/NativeScript/nativescript-cli/commit/2cda1e64c58d582821a05cf2bb01a980304bdc70))
891
+ * scoped runtimes, project detection, frameworkPath ([8805f1e](https://github.com/NativeScript/nativescript-cli/commit/8805f1ecf7da83483d26a66ac8fe367950cee7b4))
892
+ * unit-tests ([092f3f4](https://github.com/NativeScript/nativescript-cli/commit/092f3f4a4411a414d3c67d033c45f9ac16ed3426))
893
+ * update runtime package.json when config changes ([299c1f5](https://github.com/NativeScript/nativescript-cli/commit/299c1f561956cf51d284faf5a754e69df7327ad0))
894
+
895
+
896
+ ### Features
897
+
898
+ * add 'ns' alias ([b0acd67](https://github.com/NativeScript/nativescript-cli/commit/b0acd6749826d0bca6460970469ef6b279e6e3b5))
899
+ * add 'nsc' alias ([c8c2d94](https://github.com/NativeScript/nativescript-cli/commit/c8c2d94783085c485743123a8a86285886b5b36c))
900
+ * config file handling ([011b02b](https://github.com/NativeScript/nativescript-cli/commit/011b02b59f2b4a9fe9fa78efd1d703c28ac9cb6a))
901
+ * config manipulation ([90ac914](https://github.com/NativeScript/nativescript-cli/commit/90ac9147064e9fbc94d06c7e9390b67ab3506626))
902
+ * passing appPath and appResourcesPath through gradle args ([e915a93](https://github.com/NativeScript/nativescript-cli/commit/e915a93cda7418d8f7c2b82f58f7930897db28bc))
903
+ * use scoped app templates and fix create project appid ([e0f8f0f](https://github.com/NativeScript/nativescript-cli/commit/e0f8f0fcfadcecc66441b6c79d5561a482b5cd04))
904
+ * **webpack:** use scoped @nativescript/webpack ([8307d78](https://github.com/NativeScript/nativescript-cli/commit/8307d78a1fe7954709ec9bf1dcfcabd68cc832e5))
905
+
906
+
907
+
908
+ ## [6.7.8](https://github.com/NativeScript/nativescript-cli/compare/v6.7.7...v6.7.8) (2020-06-27)
909
+
910
+
911
+ ### Bug Fixes
912
+
913
+ * **react:** tns options ([1ad7bda](https://github.com/NativeScript/nativescript-cli/commit/1ad7bdad9cf1de588293288d18aa6b88c4f6ef94))
914
+
915
+
916
+
917
+ ## [6.7.7](https://github.com/NativeScript/nativescript-cli/compare/v6.7.6...v6.7.7) (2020-06-27)
918
+
919
+
920
+ ### Features
921
+
922
+ * **react:** official quick create for --react app ([#5336](https://github.com/NativeScript/nativescript-cli/issues/5336)) ([5d3f3a4](https://github.com/NativeScript/nativescript-cli/commit/5d3f3a4336e6aeb6b2fc78b19ace1c9eea51ae20))
923
+
924
+
925
+
926
+ ## [6.7.5](https://github.com/NativeScript/nativescript-cli/compare/v6.7.4...v6.7.5) (2020-06-25)
927
+
928
+
929
+ ### Features
930
+
931
+ * **android:** doctor support for android 30 ([#5332](https://github.com/NativeScript/nativescript-cli/issues/5332)) ([c5930e4](https://github.com/NativeScript/nativescript-cli/commit/c5930e41562d49d004edc28a88c6d192c59288c9))
932
+
933
+
934
+
935
+ ## [6.7.4](https://github.com/NativeScript/nativescript-cli/compare/v6.7.0...v6.7.4) (2020-05-30)
936
+
937
+
938
+ ### Bug Fixes
939
+
940
+ * **chrome:** new debug url with chrome ([#5319](https://github.com/NativeScript/nativescript-cli/issues/5319)) ([788ac88](https://github.com/NativeScript/nativescript-cli/commit/788ac8895981eb8a60d117effa73e4dd8e115a16))
941
+ * **node:** full node 14 support ([4c005ca](https://github.com/NativeScript/nativescript-cli/commit/4c005caf2731d1ba489aa6a854bca3d3d5d7e154))
942
+
943
+
944
+
945
+ # [6.7.0](https://github.com/NativeScript/nativescript-cli/compare/v6.5.1...v6.7.0) (2020-05-30)
946
+
947
+
948
+ ### Features
949
+
950
+ * **android:** allow modifying gradlew args in hooks ([#5301](https://github.com/NativeScript/nativescript-cli/issues/5301)) ([6684a3e](https://github.com/NativeScript/nativescript-cli/commit/6684a3e80d56cf6bb89a0250b5c28ae790e860f4))
951
+ * **node:** version 14 support ([#5316](https://github.com/NativeScript/nativescript-cli/issues/5316)) ([5414b77](https://github.com/NativeScript/nativescript-cli/commit/5414b77b7981bbf109d521a2c9ae7573fe69ab12))
952
+
953
+
954
+
955
+ NativeScript CLI Changelog
956
+ ================
957
+
958
+ 6.5.0 (2020, May 22)
959
+ ===
960
+
961
+ ### New
962
+
963
+ * [Implemented #5255](https://github.com/NativeScript/nativescript-cli/issues/5255): Warn if the CLI might print sensitive data to the output
964
+
965
+ ### Fixed
966
+
967
+ * [Fixed #5259](https://github.com/NativeScript/nativescript-cli/issues/5259): Unable to use pnpm on macOS and Linux
968
+ * [Fixed #5260](https://github.com/NativeScript/nativescript-cli/issues/5260): `tns package-manager set invalid_value` does not say pnpm is supported
969
+ * [Fixed #5261](https://github.com/NativeScript/nativescript-cli/issues/5261): `tns package-manager set <valid value>` does not give any output
970
+ * [Fixed #5262](https://github.com/NativeScript/nativescript-cli/issues/5262): `tns package-manager` fails with error
971
+ * [Fixed #5263](https://github.com/NativeScript/nativescript-cli/issues/5263): `tns package-manager` docs does not list pnpm as supported value
972
+ * [Fixed #5264](https://github.com/NativeScript/nativescript-cli/issues/5264): `tns package-manager --help` fails with error
973
+
974
+
975
+ 6.4.1 (2020, February 25)
976
+ ===
977
+
978
+ ### Fixed
979
+
980
+ * [Fixed #5236](https://github.com/NativeScript/nativescript-cli/issues/5236): File paths from device logs are not clickable
981
+ * [Fixed #5251](https://github.com/NativeScript/nativescript-cli/issues/5251): External files are not livesynced
982
+ * [Fixed #5252](https://github.com/NativeScript/nativescript-cli/issues/5252): Logs from platform specific files point to incorrect file
983
+
984
+
985
+ 6.4.0 (2020, February 11)
986
+ ===
987
+
988
+ ### New
989
+
990
+ * [Implemented #4654](https://github.com/NativeScript/nativescript-cli/issues/4654): Add support for pkg manager `pnpm`
991
+ * [Implemented #5214](https://github.com/NativeScript/nativescript-cli/issues/5214): Same dependencies installed multiple times in `node_modules` cause build failure
992
+ * [Implemented #5218](https://github.com/NativeScript/nativescript-cli/issues/5218): Allow configuring path/name to webpack.config.js
993
+ * [Implemented #5220](https://github.com/NativeScript/nativescript-cli/issues/5220): Native metadata filtering for iOS and Android
994
+ * [Implemented #5230](https://github.com/NativeScript/nativescript-cli/issues/5230): Obsolete support for Xcode 10
995
+ * [Implemented #5233](https://github.com/NativeScript/nativescript-cli/issues/5233): Support command level hooks
996
+
997
+ ### Fixed
998
+
999
+ * [Fixed #5187](https://github.com/NativeScript/nativescript-cli/issues/5187): Inaccessible native source code without modulemap
1000
+ * [Fixed #5239](https://github.com/NativeScript/nativescript-cli/issues/5239): Temporary files created by CLI are not deleted in some cases
1001
+ * [Fixed #5242](https://github.com/NativeScript/nativescript-cli/issues/5242): Java 13 is not supported, but doctor does not detect it
1002
+
1003
+
1004
+ 6.3.3 (2020, January 13)
1005
+ ===
1006
+
1007
+ ### New
1008
+
1009
+ * [Implemented #5205](https://github.com/NativeScript/nativescript-cli/issues/5205): Support build hooks
1010
+ * [Implemented #5210](https://github.com/NativeScript/nativescript-cli/issues/5210): Support environment check hooks
1011
+
1012
+ ### Fixed
1013
+
1014
+ * [Fixed #3818](https://github.com/NativeScript/nativescript-cli/issues/3818): Cannot set property 'socket' of null
1015
+ * [Fixed #5072](https://github.com/NativeScript/nativescript-cli/issues/5072):`tns update next` doesn't work with CLI 6+
1016
+
1017
+
1018
+ 6.3.2 (2020, January 9)
1019
+ ===
1020
+
1021
+ ### Fixed
1022
+
1023
+ * [Fixed #5200](https://github.com/NativeScript/nativescript-cli/issues/5200): api29 emulator is not recognized as latest
1024
+
1025
+
1026
+ 6.3.1 (2020, January 7)
1027
+ ===
1028
+
1029
+ ### Fixed
1030
+
1031
+ * [Fixed #5192](https://github.com/NativeScript/nativescript-cli/issues/5192): `tns info` command does not work with @nativescript/core
1032
+
1033
+
1034
+ 6.3.0 (2019, December 17)
1035
+ ===
1036
+
1037
+ ### New
1038
+
1039
+ * [Implemented #5128](https://github.com/NativeScript/nativescript-cli/issues/5128): Support for node v13
1040
+ * [Implemented #5155](https://github.com/NativeScript/nativescript-cli/issues/5155): Improve transition from tns preview to tns run
1041
+ * [Implemented #5180](https://github.com/NativeScript/nativescript-cli/issues/5180): Cache the result of environment checks
1042
+
1043
+ ### Fixed
1044
+
1045
+ * [Fixed #4982](https://github.com/NativeScript/nativescript-cli/issues/4982): `tns deploy` does not verify if the project should be migrated
1046
+ * [Fixed #5069](https://github.com/NativeScript/nativescript-cli/issues/5069): Android API 29 emulator error
1047
+ * [Fixed #5113](https://github.com/NativeScript/nativescript-cli/issues/5113): tns test init page does not list frameworks properly.
1048
+ * [Fixed #5115](https://github.com/NativeScript/nativescript-cli/issues/5115): tns update command doesn't work in some plugins' demo apps
1049
+ * [Fixed #5149](https://github.com/NativeScript/nativescript-cli/issues/5149): `tns update` should handle scoped packages
1050
+ * [Fixed #5159](https://github.com/NativeScript/nativescript-cli/issues/5159): applyPluginsCocoaPods fails on case sensitive volumes
1051
+ * [Fixed #5173](https://github.com/NativeScript/nativescript-cli/issues/5173): `--justlaunch` flag enables HMR
1052
+
1053
+ 6.2.2 (2019, November 22)
1054
+ ==
1055
+
1056
+ ### Fixed
1057
+ * [Fixed #5126](https://github.com/NativeScript/nativescript-cli/issues/5126): CLI does not generate all icons
1058
+
1059
+ 6.2.1 (2019, November 18)
1060
+ ==
1061
+
1062
+ ### Fixed
1063
+ * [Fixed #5120](https://github.com/NativeScript/nativescript-cli/issues/5120): Android resource directories are not prepared correctly
1064
+ * [Fixed #5105](https://github.com/NativeScript/nativescript-cli/issues/5105): App restarts when changing platform specific scss
1065
+
1066
+ 6.2.0 (2019, November 1)
1067
+ ==
1068
+
1069
+ ### New
1070
+ * [Implemented #5038](https://github.com/NativeScript/nativescript-cli/issues/5038): Deprecate support for markingMode:full
1071
+ * [Implemented #5049](https://github.com/NativeScript/nativescript-cli/issues/5049): Android App Bundle Improvements
1072
+ * [Implemented #5060](https://github.com/NativeScript/nativescript-cli/issues/5060): Kotlin usage tracking in android builds
1073
+ * [Implemented #5096](https://github.com/NativeScript/nativescript-cli/issues/5096): Reduce the npm requests when checking if the project should be migrated
1074
+ * [Implemented #5104](https://github.com/NativeScript/nativescript-cli/pull/5104): Allow tag and range versions in the preview app plugin versions validation
1075
+ * [Implemented #5107](https://github.com/NativeScript/nativescript-cli/issues/5107): Support V8 Snapshots on Windows
1076
+
1077
+ ### Fixed
1078
+ * [Fixed #3785](https://github.com/NativeScript/nativescript-cli/issues/3785): NativeScript CLI doesn't pause on webpack compilation errors
1079
+ * [Fixed #4681](https://github.com/NativeScript/nativescript-cli/issues/4681): `tns update ios` is not working
1080
+ * [Fixed #4963](https://github.com/NativeScript/nativescript-cli/issues/4963): Difference in hookArgs.prepareData.platform on prepare and run command
1081
+ * [Fixed #4995](https://github.com/NativeScript/nativescript-cli/issues/4995): Building plugin and running demo app fails if plugins has a surrounding gradle build
1082
+ * [Fixed #5005](https://github.com/NativeScript/nativescript-cli/issues/5005): Apple Watch extension with space in the name of `.entitlements` file is not working
1083
+ * [Fixed #5020](https://github.com/NativeScript/nativescript-cli/issues/5020): Stuck at "Restarting application on device" on Windows 10, iPad mini 2, compiled with NativeScript Sidekick cloud service.
1084
+ * [Fixed #5030](https://github.com/NativeScript/nativescript-cli/issues/5030): The `tns devices` command lists appletv as iOS platform
1085
+ * [Fixed #5034](https://github.com/NativeScript/nativescript-cli/issues/5034): Broken build when passing --i-cloud-container-environment
1086
+ * [Fixed #5056](https://github.com/NativeScript/nativescript-cli/issues/5056): Unable to process native iOS files and frameworks from scoped packages
1087
+ * [Fixed #5061](https://github.com/NativeScript/nativescript-cli/issues/5061): Unable to resolve cocoapods version conflicts
1088
+ * [Fixed #5063](https://github.com/NativeScript/nativescript-cli/issues/5063): Splash Screen asset generation fails for iOS
1089
+ * [Fixed #5070](https://github.com/NativeScript/nativescript-cli/issues/5070): The `tns test` command cannot work if the source code is not in `src` or `app` folder
1090
+ * [Fixed #5077](https://github.com/NativeScript/nativescript-cli/pull/5077): Pass allowProvisioningUpdates to xcodebuild only when building for device
1091
+ * [Fixed #5094](https://github.com/NativeScript/nativescript-cli/issues/5094): Add Theme v2 name to non-extenal modules when starting webpack
1092
+
1093
+ 6.1.2 (2019, September 18)
1094
+ ==
1095
+
1096
+ ### Fixed
1097
+ * [Fixed #5018](https://github.com/NativeScript/nativescript-cli/issues/5018): Track runtime versions on add and on build, run, deploy
1098
+
1099
+
1100
+ 6.1.1 (2019, September 17)
1101
+ ==
1102
+
1103
+ ### Fixed
1104
+
1105
+ * [Fixed #5015](https://github.com/NativeScript/nativescript-cli/pull/5015): CLI passes `--preserve-symlinks` to the webpack itself, not to the Node.js
1106
+ * [Fixed #4893](https://github.com/NativeScript/nativescript-cli/issues/4893): `tns preview` crashes when scanning on devices with different platforms
1107
+ * [Fixed #4939](https://github.com/NativeScript/nativescript-cli/issues/4939): Xcode 11 warning: `CFBundleIdentifier value must be the same as PRODUCT_BUNDLE_IDENTIFIER`
1108
+
1109
+ 6.1.0 (2019, September 04)
1110
+ ==
1111
+
1112
+ ### New
1113
+
1114
+ * [Implemented #4229](https://github.com/NativeScript/nativescript-cli/issues/4229): Do not display command usage help after execution is started
1115
+ * [Implemented #4909](https://github.com/NativeScript/nativescript-cli/issues/4909): Support for Xcode 11 and iOS 13
1116
+ * [Implemented #4926](https://github.com/NativeScript/nativescript-cli/issues/4926): Android SDK 29 support
1117
+ * [Implemented #4947](https://github.com/NativeScript/nativescript-cli/issues/4947): Add tracking for both React NativeScript and Svelte Native projects
1118
+ * [Implemented #4966](https://github.com/NativeScript/nativescript-cli/issues/4966): Support LiveSync to iOS Wi-Fi devices
1119
+ * [Implemented #4974](https://github.com/NativeScript/nativescript-cli/issues/4974): Ask the users why they've uninstalled NativeScript CLI
1120
+ * [Implemented #4976](https://github.com/NativeScript/nativescript-cli/issues/4976): Handle changes in iOS and Android Runtime 6.1.0 logging
1121
+ * [Implemented #4980](https://github.com/NativeScript/nativescript-cli/issues/4980): Update message for subscribing to NativeScript newsletter
1122
+ * [Implemented #4992](https://github.com/NativeScript/nativescript-cli/pull/4992): Allow tns to be able to use npm configuration properly
1123
+
1124
+ ### Fixed
1125
+
1126
+ * [Fixed #4936](https://github.com/NativeScript/nativescript-cli/issues/4936): HMR not recovering after exception in Angular lazy routes
1127
+ * [Fixed #4958](https://github.com/NativeScript/nativescript-cli/issues/4958): `tns doctor` fails when setup is not correct and user selects to fix it manually
1128
+ * [Fixed #4971](https://github.com/NativeScript/nativescript-cli/issues/4971): Not needed checks are executed on `pod install`
1129
+
1130
+ 6.0.3 (2019, August 05)
1131
+ ==
1132
+ * [Fixed #4914](https://github.com/NativeScript/nativescript-cli/issues/4914): livesync not working with command tns test android
1133
+ * [Fixed #4746](https://github.com/NativeScript/nativescript-cli/issues/4746): Unable to work with `karma-webpack@4.0.2` on test command
1134
+ * [Fixed #4586](https://github.com/NativeScript/nativescript-cli/issues/4586): publish ios fails because of hsa2
1135
+
1136
+ 6.0.2 (2019, July 22)
1137
+ ==
1138
+ * [Fixed #4885](https://github.com/NativeScript/nativescript-cli/issues/4885): `migrate` and `update` commands are failing where everything is up-to-date
1139
+ * [Fixed #4887](https://github.com/NativeScript/nativescript-cli/pull/4887): Include forgotten Angular dependency from the code-sharing apps
1140
+ * [Fixed #4888](https://github.com/NativeScript/nativescript-cli/pull/4888): Sidekick: multiple errors in Sidekick
1141
+
1142
+ 6.0.1 (2019, July 18)
1143
+ ==
1144
+ * [Fixed #4814](https://github.com/NativeScript/nativescript-cli/issues/4814): Missing `yargs-parser` dependency
1145
+ * [Fixed #4846](https://github.com/NativeScript/nativescript-cli/issues/4846): Xcode running on devices crashes with error `Unable to create file *.hot-update.json`
1146
+ * [Fixed #4871](https://github.com/NativeScript/nativescript-cli/pull/4871): Issues when stopping the LiveSync process
1147
+ * [Fixed #4872](https://github.com/NativeScript/nativescript-cli/pull/4872): Sidekick: debug operation fails on iOS when Developer Disk Image is not installed on device
1148
+ * [Fixed #4873](https://github.com/NativeScript/nativescript-cli/issues/4873): `tns migrate` should update `nativescript-vue-template-compiler`
1149
+ * [Fixed #4874](https://github.com/NativeScript/nativescript-cli/issues/4874): After `tns migrate` preview/build/run commands fail with `ERROR in The Angular Compiler requires TypeScript >=3.1.1 and <3.3.0 but 3.4.5 was found instead.`
1150
+ * [Fixed #4876](https://github.com/NativeScript/nativescript-cli/issues/4876):`tns migrate` does not update @ngtools/webpack
1151
+ * [Fixed #4878](https://github.com/NativeScript/nativescript-cli/issues/4878): `tns migrate` does not update @angular/animations
1152
+ * [Fixed #4879](https://github.com/NativeScript/nativescript-cli/issues/4879): `--platform-template` option is still shown in CLI's help
1153
+
1154
+ 6.0.0 (2019, July 17)
1155
+ ==
1156
+
1157
+ ### Breaking changes
1158
+
1159
+ * Applications can be build only with bundle workflow - in previous versions there were two ways to build your application - `bundle` and `legacy` workflow. With this release CLI allows building your app only in case you are using the bundle workflow. More information is available [in this blopost](https://www.nativescript.org/blog/the-future-of-building-nativescript-apps)
1160
+ * With older CLI versions you were able to run `tns debug android` and continue debugging after the command exits. In this release, when CLI exits, it clears all used resources, so you will not be able to continue the debug session. More information is available in [this issue](https://github.com/NativeScript/nativescript-cli/issues/4219) for more information.
1161
+ * `--syncAllFiles` option is not supported anymore - this option was added to force CLI to watch all files in `node_modules`. In 6.0 this is the default and only behavior - webpack watches all required files and CLI watches the `platforms` directories and `package.json` files of the plugins added as dependencies of the application.
1162
+ * Drop support for Xcode versions below 10 - new features for iOS require the latest Xcode versions, so we decided to require at least Xcode 10 for building the applications
1163
+ * Drop support for Node.js below 8 - Node.js 8 does not support [these version anymore](https://github.com/nodejs/Release) and so does our CLI. In case you are using such Node.js version, CLI will not allow you to execute any command, so you should upgrade to latest LTS version.
1164
+ * `--platformTemplate` option has been deleted. More information can be found in [this issue](https://github.com/NativeScript/nativescript-cli/issues/4867).
1165
+ * `tns init` command has been deleted
1166
+ * `tns clean app` command has been deleted
1167
+ * Improved plugin development workflow may require changes in your daily work when creating plugins. More information can be found in [this issue](https://github.com/NativeScript/nativescript-cli/issues/4865)
1168
+ * When you pass `--release`, CLI will switch webpack in production mode. More information can be found in [this issue](https://github.com/NativeScript/nativescript-cli/issues/4497)
1169
+ * CLI now forces sourceMap generation by default when building in debug mode. You can disable them by passing `--env.sourceMap false`. souceMaps are disabled by default in release builds, you can enable them by passing `--env.sourceMap`.
1170
+
1171
+ ### New
1172
+ * [Implemented #2368](https://github.com/NativeScript/nativescript-cli/issues/2368): Compiling in other path (dist), no in same path (src/app)
1173
+ * [Implemented #2417](https://github.com/NativeScript/nativescript-cli/issues/2417): Show TypeScript line numbers in stack traces
1174
+ * [Implemented #2776](https://github.com/NativeScript/nativescript-cli/issues/2776): Add ability to ignore files from final package when build in release
1175
+ * [Implemented #3378](https://github.com/NativeScript/nativescript-cli/issues/3378): Running app with locally installed plugin should transpile the plugin's TypeScript files
1176
+ * [Implemented #4497](https://github.com/NativeScript/nativescript-cli/issues/4497): Ability to detect within webpack if app is being built for release
1177
+ * [Implemented #4604](https://github.com/NativeScript/nativescript-cli/issues/4604): Logs and errors from devices always point to bundle/vendor files
1178
+ * [Implemented #4646](https://github.com/NativeScript/nativescript-cli/issues/4646): Introduce command (`tns migrate`) to migrate old project to 6.0.0 requirements
1179
+ * [Implemented #4648](https://github.com/NativeScript/nativescript-cli/issues/4648): Drop support for Node.js < 8
1180
+ * [Implemented #4649](https://github.com/NativeScript/nativescript-cli/issues/4649): Deprecate support for Node.js < 10
1181
+ * [Implemented #4650](https://github.com/NativeScript/nativescript-cli/issues/4650): Add official support for Node.js 12
1182
+ * [Implemented #4651](https://github.com/NativeScript/nativescript-cli/issues/4651): Add drawer navigation prompt when vue flavor is selected on `tns create`
1183
+ * [Implemented #4667](https://github.com/NativeScript/nativescript-cli/issues/4667): Support yarn hoisted packages in a workspace context
1184
+ * [Implemented #4692](https://github.com/NativeScript/nativescript-cli/issues/4692): CLI should watch package.json files in the application
1185
+ * [Implemented #4731](https://github.com/NativeScript/nativescript-cli/issues/4731): Drop support for Xcode < 10
1186
+ * [Implemented #4863](https://github.com/NativeScript/nativescript-cli/issues/4863): Delete `tns init` command
1187
+ * [Implemented #4863](https://github.com/NativeScript/nativescript-cli/issues/4863): Delete `tns clean app` command
1188
+ * [Implemented #4865](https://github.com/NativeScript/nativescript-cli/issues/4865): Improve plugin development workflow
1189
+ * [Implemented #4867](https://github.com/NativeScript/nativescript-cli/issues/4867): Delete `--platformTemplate` option
1190
+
1191
+ ### Fixed
1192
+ * [Fixed #2739](https://github.com/NativeScript/nativescript-cli/issues/2739): Unit test runner do not work in --watch mode
1193
+ * [Fixed #2963](https://github.com/NativeScript/nativescript-cli/issues/2963): Confusing messages on preparing plugin
1194
+ * [Fixed #3028](https://github.com/NativeScript/nativescript-cli/issues/3028): Local dependency brakes build
1195
+ * [Fixed #3146](https://github.com/NativeScript/nativescript-cli/issues/3146): `tns run ios` shows "No reachable hosts" after running unit tests
1196
+ * [Fixed #3351](https://github.com/NativeScript/nativescript-cli/issues/3351): If you delete the whole css data or the css file itself the changes are not going to be applied to the app
1197
+ * [Fixed #3546](https://github.com/NativeScript/nativescript-cli/issues/3546): Your project have installed babel-traverse version null but Android platform requires version ^6.4.5
1198
+ * [Fixed #3568](https://github.com/NativeScript/nativescript-cli/issues/3568): EXPORT FAILED fse.node has conflicting provisioning settings
1199
+ * [Fixed #3630](https://github.com/NativeScript/nativescript-cli/issues/3630): cp: copyFileSync: could not write to dest file (code=EPERM)
1200
+ * [Fixed #3767](https://github.com/NativeScript/nativescript-cli/issues/3767): Exception when delete a file from `<plugin>/platforms/android`
1201
+ * [Fixed #3849](https://github.com/NativeScript/nativescript-cli/issues/3849): The livesync check if a file has modifications doesn't work as expected
1202
+ * [Fixed #4219](https://github.com/NativeScript/nativescript-cli/issues/4219): Android debugging is leaking the debug session
1203
+ * [Fixed #4239](https://github.com/NativeScript/nativescript-cli/issues/4239): Copy `App_Resources` directly to `platforms/.../res` (Android) or `platforms/.../Resources` (iOS) instead of copying them with Webpack
1204
+ * [Fixed #4264 ](https://github.com/NativeScript/nativescript-cli/issues/4264 ): When using `--syncAllFiles` on Android frequently crashes with error
1205
+ * [Fixed #4480](https://github.com/NativeScript/nativescript-cli/issues/4480): [TypeScript & Vue project] When using `--bundle` changes made to a platform specific file in `node_modules` does not start a new build process
1206
+ * [Fixed #4500](https://github.com/NativeScript/nativescript-cli/issues/4500): Changes to `.js` files located in `node_modules` causes the `livesync` to take upto 30 sec
1207
+ * [Fixed #4513](https://github.com/NativeScript/nativescript-cli/issues/4513): Error when building for Android and using `bcryptjs`
1208
+ * [Fixed #4607](https://github.com/NativeScript/nativescript-cli/issues/4607): Image replacement is not respected during tns run with hmr
1209
+ * [Fixed #4647](https://github.com/NativeScript/nativescript-cli/issues/4647): CLI's checkForChanges method should not check all `node_modules`
1210
+ * [Fixed #4658](https://github.com/NativeScript/nativescript-cli/issues/4658): [iOS] tns preview is including tns-core-modules in vendor.js
1211
+ * [Fixed #4770](https://github.com/NativeScript/nativescript-cli/issues/4770): Incorrect execution of hooks where there is unresolved injected dependency
1212
+
1213
+
1214
+ 5.4.2 (2019, June 19)
1215
+ ==
1216
+
1217
+ ### Fixed
1218
+ * [Fixed #4732](https://github.com/NativeScript/nativescript-cli/pull/4732): HMR does not work with `tns cloud run ios ...` on Windows
1219
+
1220
+
1221
+ 5.4.1 (2019, June 17)
1222
+ ==
1223
+
1224
+ ### Fixed
1225
+ * [Fixed #4226](https://github.com/NativeScript/nativescript-cli/issues/4226): Slowly attaching to debugger on real iOS device with bundle
1226
+ * [Fixed #4584](https://github.com/NativeScript/nativescript-cli/issues/4584): Invalid App Store Icon Error, while uploading an iOS app with CLI generated icons
1227
+ * [Fixed #4608](https://github.com/NativeScript/nativescript-cli/issues/4608): Misleading message for min runtime version
1228
+ * [Fixed #4664](https://github.com/NativeScript/nativescript-cli/pull/4664): `tns cloud run...` command does not respect useLegacyWorkflow flag
1229
+ * [Fixed #4665](https://github.com/NativeScript/nativescript-cli/issues/4665): Incorrect error is shown when unsupported Node.js version is used
1230
+ * [Fixed #4664](https://github.com/NativeScript/nativescript-cli/pull/4679): `$logger` fails to print null objects
1231
+ * [Fixed #4665](https://github.com/NativeScript/nativescript-cli/issues/4701): Deprecate support for `tns init` command
1232
+
1233
+
1234
+ 5.4.0 (2019, May 15)
1235
+ ==
1236
+
1237
+ ### Implemented
1238
+ * [Implemented #3993](https://github.com/NativeScript/nativescript-cli/issues/3993): Improve `ctrl + c` handling.
1239
+ * [Implemented #4374](https://github.com/NativeScript/nativescript-cli/issues/4374): Add `iCloudContainerEnvironment` build option.
1240
+ * [Implemented #4394](https://github.com/NativeScript/nativescript-cli/issues/4394): Enable Using Hot Module Replacement by Default for New Projects
1241
+ * [Implemented #4518](https://github.com/NativeScript/nativescript-cli/issues/4518): Show deprecation messages for things that will be dropped for 6.0.0 release
1242
+ * [Implemented #4541](https://github.com/NativeScript/nativescript-cli/issues/4541): [Beta] Allow integration of Apple Watch application in NativeScript app
1243
+ * [Implemented #4548](https://github.com/NativeScript/nativescript-cli/issues/4548): Deprecate support for the Legacy Workflow
1244
+ * [Implemented #4602](https://github.com/NativeScript/nativescript-cli/issues/4602): Streamline CLI's logger
1245
+
1246
+
1247
+ ### Fixed
1248
+ * [Fixed #4280](https://github.com/NativeScript/nativescript-cli/issues/4280): Incorrect message if you delete app's folder and run command with `--path` in it
1249
+ * [Fixed #4512](https://github.com/NativeScript/nativescript-cli/issues/4512): App's Podfile should be applied last
1250
+ * [Fixed #4573](https://github.com/NativeScript/nativescript-cli/pull/4573): logcat process is not restarted in some cases
1251
+ * [Fixed #4593](https://github.com/NativeScript/nativescript-cli/issues/4593): Node.js processes not killed after `tns create` on macOS when analytics are enabled
1252
+ * [Fixed #4598](https://github.com/NativeScript/nativescript-cli/issues/4598): app.css changes don't apply when debugging with --debug-brk
1253
+ * [Fixed #4606](https://github.com/NativeScript/nativescript-cli/issues/4606): Unable to build application for iOS with nativescript-bottombar
1254
+ * [Fixed #4616](https://github.com/NativeScript/nativescript-cli/issues/4616): `tns plugin create` command hangs
1255
+
1256
+ 5.3.4 (2019, April 24)
1257
+ ==
1258
+
1259
+ ### Fixed
1260
+ * [Fixed #4561](https://github.com/NativeScript/nativescript-cli/issues/4561): CLI merges xcconfig files only for specified build configuration
1261
+
1262
+ 5.3.3 (2019, April 23)
1263
+ ==
1264
+
1265
+ ### Fixed
1266
+ * [Fixed #4527](https://github.com/NativeScript/nativescript-cli/issues/4527): Unable to upload applications to App Store
1267
+
1268
+ 5.3.2 (2019, April 12)
1269
+ ==
1270
+
1271
+ ### Fixed
1272
+ * [Fixed #1798](https://github.com/NativeScript/nativescript-cli/issues/1798): Test init command doesn't add a sample test in TypeScript for TypeScript/Angular projects
1273
+ * [Fixed #4498](https://github.com/NativeScript/nativescript-cli/pull/4498): API: Change the AppStore ids for kinvey scanner and preview app
1274
+ * [Fixed #4504](https://github.com/NativeScript/nativescript-cli/issues/4504): Custom tagged versions of android runtime are not supported
1275
+ * [Fixed #4510](https://github.com/NativeScript/nativescript-cli/pull/4510): Handle HTTP 304 response status code
1276
+
1277
+ 5.3.1 (2019, April 03)
1278
+ ==
1279
+
1280
+ ### Implemented
1281
+ * [Implemented #4492](https://github.com/NativeScript/nativescript-cli/pull/4492): API(kinvey): provide correct data to preview-sdk based on the schema
1282
+
1283
+ ### Fixed
1284
+ * [Fixed #4370](https://github.com/NativeScript/nativescript-cli/issues/4370): NativeScript CLI installation fails on linux
1285
+ * [Fixed #4451](https://github.com/NativeScript/nativescript-cli/issues/4451): Error while trying to start application on Android emulator with API level Q
1286
+ * [Fixed #4483](https://github.com/NativeScript/nativescript-cli/pull/4483): Detection fixes for emulator/device
1287
+
1288
+ 5.3.0 (2019, March 27)
1289
+ ==
1290
+
1291
+ ### Implemented
1292
+ * [Implemented #3965](https://github.com/NativeScript/nativescript-cli/issues/3965): [Beta] Support for iOS app extensions
1293
+ * [Implemented #4389](https://github.com/NativeScript/nativescript-cli/issues/4389): Provide a way to use Hot Module Replacement (`--hmr`) by default for a project
1294
+ * [Implemented #4392](https://github.com/NativeScript/nativescript-cli/issues/4392): Ability to run unit tests with `--bundle`
1295
+ * [Implemented #4456](https://github.com/NativeScript/nativescript-cli/issues/4456): Official support for Hot Module Replacement (`--hmr`)
1296
+
1297
+ ### Fixed
1298
+ * [Fixed #4403](https://github.com/NativeScript/nativescript-cli/issues/4403): Exception in iOS app entry point not shown in terminal
1299
+ * [Fixed #4440](https://github.com/NativeScript/nativescript-cli/issues/4440): `NativeScript can only run in Xcode version 6.0 or greater` error is shown on every iOS command
1300
+ * [Fixed #4441](https://github.com/NativeScript/nativescript-cli/issues/4441): Nothing happens with app on device if you delete a file with bundle
1301
+ * [Fixed #4458](https://github.com/NativeScript/nativescript-cli/issues/4458): Warnings for short imports are shown for browser code
1302
+ * [Fixed #4459](https://github.com/NativeScript/nativescript-cli/pull/4459): API: Raise `debuggerAttached` only if app is restarted during debug
1303
+
1304
+
1305
+ 5.2.3 (2019, March 12)
1306
+ ==
1307
+
1308
+ ### Fixed
1309
+ * [Fixed #4426](https://github.com/NativeScript/nativescript-cli/pull/4426): Some http requests may stuck and instead of hanging, we should retry them
1310
+
1311
+
1312
+ 5.2.2 (2019, March 08)
1313
+ ==
1314
+
1315
+ ### Fixed
1316
+ * [Fixed #4390](https://github.com/NativeScript/nativescript-cli/issues/4390): Update and synchronise the unit testing dependencies
1317
+
1318
+
1319
+ 5.2.1 (2019, March 05)
1320
+ ==
1321
+ ### Implemented
1322
+ * [Implemented #4375](https://github.com/NativeScript/nativescript-cli/issues/4375): Show warning for deprecated short imports/require used in application
1323
+
1324
+ ### Fixed
1325
+ * [Fixed #3604](https://github.com/NativeScript/nativescript-cli/issues/3604): iOS build breaks with multiple plugins with Podfile
1326
+ * [Fixed #4301](https://github.com/NativeScript/nativescript-cli/issues/4301): Disconnect previous iOS chrome debuggers when opening a new one
1327
+ * [Fixed #4354](https://github.com/NativeScript/nativescript-cli/issues/4354): Unable to apply a change when application is not running on device
1328
+ * [Fixed #4373](https://github.com/NativeScript/nativescript-cli/issues/4373): `tns test` throws an error in newly created apps
1329
+ * [Fixed #4383](https://github.com/NativeScript/nativescript-cli/issues/4383): `tns doctor` command does not report any information on CircleCI and Travis virtual machines
1330
+
1331
+
1332
+ 5.2.0 (2018, February 13)
1333
+ ==
1334
+
1335
+ ### Implemented
1336
+ * [Implemented #3807](https://github.com/NativeScript/nativescript-cli/issues/3807): Enable app Podfile
1337
+ * [Implemented #4243](https://github.com/NativeScript/nativescript-cli/issues/4243): CLI command steps profiling and performance analytics
1338
+ * [Implemented #4305](https://github.com/NativeScript/nativescript-cli/issues/4305): Add official support for Node.js 11
1339
+ * [Implemented #4313](https://github.com/NativeScript/nativescript-cli/issues/4313): Track how many users used {N} CLI and Playground
1340
+ * [Implemented #4323](https://github.com/NativeScript/nativescript-cli/issues/4323): Skip CLI's postinstall in case it is not installed globally
1341
+ * [Implemented #4325](https://github.com/NativeScript/nativescript-cli/issues/4325): Angular apps should work with HMR out of the box
1342
+ * [Implemented #4343](https://github.com/NativeScript/nativescript-cli/issues/4343): Support Objective-C code in App Resources for iOS applications
1343
+
1344
+ ### Fixed
1345
+ * [Fixed #3122](https://github.com/NativeScript/nativescript-cli/issues/3122): `tns debug ios --debug-brk` fails the majority of the time
1346
+ * [Fixed #3161](https://github.com/NativeScript/nativescript-cli/issues/3161): `tns test` command fails to find a running iOS simulator
1347
+ * [Fixed #4232](https://github.com/NativeScript/nativescript-cli/issues/4232): Unit testing for freshly created angular project is broken on Android emulator
1348
+ * [Fixed #4253](https://github.com/NativeScript/nativescript-cli/issues/4253): LiveSync stops working in Preview app when make change in scss file
1349
+ * [Fixed #4255](https://github.com/NativeScript/nativescript-cli/issues/4255): Uninstalling NativeScript should also remove its extensions
1350
+ * [Fixed #4283](https://github.com/NativeScript/nativescript-cli/issues/4283): `tns run android` fails with private npm registry
1351
+ * [Fixed #4300](https://github.com/NativeScript/nativescript-cli/issues/4300): Strange logs after project built for Android
1352
+ * [Fixed #4311](https://github.com/NativeScript/nativescript-cli/issues/4311): [iOS] Build with nativescript-plugin-firebase requires legacy build system
1353
+ * [Fixed #4324](https://github.com/NativeScript/nativescript-cli/issues/4324): High CPU utilization during `tns run`
1354
+ * [Fixed #4327](https://github.com/NativeScript/nativescript-cli/issues/4327): `tns devices --availableDevices` prompts to install Xcode command line tools
1355
+ * [Fixed #4347](https://github.com/NativeScript/nativescript-cli/issues/4347): `tns resources generate splashes <path to image>` fails for newly created project
1356
+
1357
+
1358
+ 5.1.1 (2019, January 17)
1359
+ ==
1360
+
1361
+ ### Fixed
1362
+ * [Fixed #4024](https://github.com/NativeScript/nativescript-cli/issues/4024): LiveSync is not working in Preview app when Angular's lazy loading is used
1363
+ * [Fixed #4197](https://github.com/NativeScript/nativescript-cli/issues/4197): Not able to change IPHONEOS_DEPLOYMENT_TARGET due to CLI overwriting ARCHS and VALID_ARCHS
1364
+ * [Fixed #4222](https://github.com/NativeScript/nativescript-cli/issues/4222): Sidekick restarts DevTools during debug when change in .xml/.css/.html file is applied
1365
+ * [Fixed #4218](https://github.com/NativeScript/nativescript-cli/issues/4218): Cannot run app after debug-brk fail
1366
+ * [Fixed #4228](https://github.com/NativeScript/nativescript-cli/issues/4228): `tns update` command doesn't work with yarn
1367
+ * [Fixed #4230](https://github.com/NativeScript/nativescript-cli/issues/4230): Debugging with HMR is not working for iOS
1368
+ * [Fixed #4234](https://github.com/NativeScript/nativescript-cli/issues/4234): Creating project hangs on Windows when yarn is set as package manager
1369
+ * [Fixed #4236](https://github.com/NativeScript/nativescript-cli/issues/4236): Chrome DevTools(iOS): Debugger does not attach after reloading the page
1370
+ * [Fixed #4238](https://github.com/NativeScript/nativescript-cli/issues/4238): Fresh project build error on ios
1371
+ * [Fixed #4251](https://github.com/NativeScript/nativescript-cli/pull/4251): Unhandled promise rejection error from sidekick when livesync to preview app with bundle
1372
+ * [Fixed #4260](https://github.com/NativeScript/nativescript-cli/issues/4260): CLI crashes when attaching to a non running iOS app
1373
+ * [Fixed #4261](https://github.com/NativeScript/nativescript-cli/issues/4261): The CLI requires developer disk image not only in debug
1374
+ * [Fixed #4272](https://github.com/NativeScript/nativescript-cli/issues/4272): Generation of splash screen fails for new templates
1375
+ * [Fixed #4273](https://github.com/NativeScript/nativescript-cli/issues/4273): `tns debug ios --hmr` If you have two open tabs and close one, breakpoints stop working
1376
+ * [Fixed #4291](https://github.com/NativeScript/nativescript-cli/issues/4291): Error during debug on iOS: WebSocket is not open: readyState 2 (CLOSING)
1377
+ * [Fixed #4292](https://github.com/NativeScript/nativescript-cli/issues/4292): Error during debug on iOS: RangeError: Index out of range
1378
+ * [Fixed #4293](https://github.com/NativeScript/nativescript-cli/issues/4293): Error during debug on iOS: RangeError [ERR_BUFFER_OUT_OF_BOUNDS]
1379
+
1380
+
1381
+ 5.1.0 (2018, December 11)
1382
+ ==
1383
+
1384
+ ### Implemented
1385
+ * [Implemented #2737](https://github.com/NativeScript/nativescript-cli/issues/2737): Make it possible `tns` to use Yarn as the package manager
1386
+ * [Implemented #2992](https://github.com/NativeScript/nativescript-cli/issues/2992): Do not restart application when changing `.xml`, `.html` or `.css` file when debugging
1387
+ * [Implemented #4068](https://github.com/NativeScript/nativescript-cli/issues/4068): Android application bundle initial support (build .aab files)
1388
+ * [Implemented #4152](https://github.com/NativeScript/nativescript-cli/issues/4152): Analytics: Get information for what has been tracked in Google Analytics
1389
+ * [Implemented #4200](https://github.com/NativeScript/nativescript-cli/issues/4200): Analytics: Add analytics for code-sharing projects usage
1390
+ * [Implemented #4201](https://github.com/NativeScript/nativescript-cli/issues/4201): Analytics: Track project property on every analytics hit
1391
+ * [Implemented #4211](https://github.com/NativeScript/nativescript-cli/issues/4211): Analytics: Track command options in analytics
1392
+
1393
+ ### Fixed
1394
+ * [Fixed #4075](https://github.com/NativeScript/nativescript-cli/issues/4075): `tns preview` - app is refreshed on ios devices when changing android specific files
1395
+ * [Fixed #4141](https://github.com/NativeScript/nativescript-cli/issues/4141): Don't prepare the project on `tns preview` command
1396
+ * [Fixed #4178](https://github.com/NativeScript/nativescript-cli/issues/4178): Broken files pattern in karma config
1397
+ * [Fixed #4198](https://github.com/NativeScript/nativescript-cli/issues/4198): The NativeScript Inspector is not closed on `Ctrl + C`
1398
+ * [Fixed #4049](https://github.com/NativeScript/nativescript-cli/issues/4049): `tns` commands Removing Newline Added by `npm` from `package.json`
1399
+
1400
+
1401
+ 5.0.3 (2018, December 4)
1402
+ ==
1403
+ ### Fixed
1404
+ * [Fixed #4186](https://github.com/NativeScript/nativescript-cli/issues/4186): Fix stuck http requests/responses
1405
+ * [Fixed #4189](https://github.com/NativeScript/nativescript-cli/pull/4189): API: Fix "Cannot read property 'removeListener' of undefined" error on second stop of livesync to preview app
1406
+
1407
+
1408
+ 5.0.2 (2018, November 29)
1409
+ ==
1410
+ ### Implemented
1411
+ * [Implemented #4167](https://github.com/NativeScript/nativescript-cli/pull/4167): API: Expose previewAppLiveSyncError event when some error is thrown while livesyncing to preview app
1412
+
1413
+ ### Fixed
1414
+ * [Fixed #3962](https://github.com/NativeScript/nativescript-cli/issues/3962): If command 'tns plugin create .. ' failed , directory with plugin repository name must be deleted
1415
+ * [Fixed #4053](https://github.com/NativeScript/nativescript-cli/issues/4053): Update Nativescript cli setup scripts to use android sdk 28
1416
+ * [Fixed #4077](https://github.com/NativeScript/nativescript-cli/issues/4077): Platform add with framework path and custom version breaks run with "--bundle"
1417
+ * [Fixed #4129](https://github.com/NativeScript/nativescript-cli/issues/4129): tns preview doesn't sync changes when download 2 Playground projects
1418
+ * [Fixed #4135](https://github.com/NativeScript/nativescript-cli/issues/4135): Too many TypeScript "Watching for file changes" messages in console during build
1419
+ * [Fixed #4158](https://github.com/NativeScript/nativescript-cli/pull/4158): API: reset devices list when stopLiveSync method is called
1420
+ * [Fixed #4161](https://github.com/NativeScript/nativescript-cli/pull/4161): API: raise deviceLost event after timeout of 5 seconds
1421
+
1422
+
1423
+ 5.0.1 (2018, November 14)
1424
+ ==
1425
+ ### Implemented
1426
+ * [Implemented #4083](https://github.com/NativeScript/nativescript-cli/pull/4083): API: Add public API for deviceFound and deviceLost for preview devices
1427
+ * [Implemented #4087](https://github.com/NativeScript/nativescript-cli/pull/4087): API: Expose public method for getting the qr code of playground app
1428
+ * [Implemented #4093](https://github.com/NativeScript/nativescript-cli/pull/4093): API: Expose public api for starting the livesync operation to preview app
1429
+
1430
+ ### Fixed
1431
+ * [Fixed #2670](https://github.com/NativeScript/nativescript-cli/issues/2670): Command line `tns run android --clean` rebuilds
1432
+ * [Fixed #4043](https://github.com/NativeScript/nativescript-cli/issues/4043): `tns preview` fails when local plugin is referenced with tag in `package.json`
1433
+ * [Fixed #4046](https://github.com/NativeScript/nativescript-cli/issues/4046):`tns debug ios` does not work with bigger projects on slower devices
1434
+ * [Fixed #4055](https://github.com/NativeScript/nativescript-cli/pull/4055): API: Remove persisted emulator's data on deviceLost event
1435
+ * [Fixed #4056](https://github.com/NativeScript/nativescript-cli/pull/4056): API: `TypeError: Invalid Version: null` is thrown when emulator is stopped immediately after start
1436
+ * [Fixed #4071](https://github.com/NativeScript/nativescript-cli/issues/4071): Unable to run `tns test <platform>`
1437
+ * [Fixed #4073](https://github.com/NativeScript/nativescript-cli/pull/4073): Error is thrown when Node.js 11 is used
1438
+ * [Fixed #4076](https://github.com/NativeScript/nativescript-cli/issues/4076): Cannot connect to device socket when run debug with justlaunch
1439
+ * [Fixed #4079](https://github.com/NativeScript/nativescript-cli/pull/4079): API: Reset errors when fallback to list avds from director
1440
+ * [Fixed #4090](https://github.com/NativeScript/nativescript-cli/issues/4090): `tns preview` and `tns platform add ...` issue
1441
+ * [Fixed #4096](https://github.com/NativeScript/nativescript-cli/issues/4096): NativeScript v4 is not using the v4 of the app templates during project creation
1442
+ * [Fixed #4100](https://github.com/NativeScript/nativescript-cli/issues/4100): Apply `before-plugins.gradle` file in the plugin `build.gradle`
1443
+
1444
+
1445
+ 5.0.0 (2018, November 1)
1446
+ ==
1447
+
1448
+ ### Breaking
1449
+
1450
+ * Existing applications that are using older Android runtime (not 5.0.0 one), but are built with CLI 5.0.0, may experience some changes - until now CLI was always passing parameter to gradle `-PsupportVersion=26.0.0-alpha1`. As CLI no longer passes this version, the default one from build.gradle will be used (for example 27.0.1). Check [this issue](https://github.com/NativeScript/nativescript-cli/pull/3923) for more information. In case you want to use the old version in your application, add the following in your `app.gradle`:
1451
+ ```
1452
+ project.ext.supportVersion = "26.0.0-alpha1"
1453
+ ```
1454
+
1455
+ * CLI will not allow building for iOS with Xcode 8 or below. Check [this issue](https://github.com/NativeScript/nativescript-cli/issues/3887) for more information.
1456
+ * CLI no longer support macOS Sierra and below. In case you are using such OS, CLI will print error message on each command. It will not stop you, but certain features will not work and we will not investigate them. `tns debug ios --inspector` will not work on macOS Sierra and below.
1457
+ * You will not be able to build applications for Android without installing Android SDK 28. You can install Android SDK 28 and build tools 28 by executing the following commands:
1458
+ ```
1459
+ $ANDROID_HOME/tools/bin/sdkmanager "build-tools;28.0.1"
1460
+ $ANDROID_HOME/tools/bin/sdkmanager "platforms;android-28"
1461
+ ```
1462
+ * `tns create` command is interactive now. In case you are using it in CI environment where the shell is marked as TTY (Travis for example), the CI will hang as it will wait for selection. You can get back the old behavior by passing `--js`: `tns create <name> --js`. In case the terminal is not interactive, CLI will use the old behavior. More information is available in [this issue](https://github.com/NativeScript/nativescript-cli/issues/3829).
1463
+
1464
+ ### New
1465
+ * [Implemented #1945](https://github.com/NativeScript/nativescript-cli/issues/1945): Add `tns plugin create` command.
1466
+ * [Implemented #3040](https://github.com/NativeScript/nativescript-cli/issues/3040): Ability to have different app identifiers for iOS and Android.
1467
+ * [Implemented #3813](https://github.com/NativeScript/nativescript-cli/issues/3813): Ability to preview NativeScript apps without any local setup - `tns preview` command.
1468
+ * [Implemented #3829](https://github.com/NativeScript/nativescript-cli/issues/3829): Interactive `tns create`.
1469
+ * [Implemented #3843](https://github.com/NativeScript/nativescript-cli/issues/3843): Make new Android livesync reuse socket connection.
1470
+ * [Implemented #3866](https://github.com/NativeScript/nativescript-cli/issues/3866): Read registry from npm config instead of hard-wiring to registry.npmjs.org.
1471
+ * [Implemented #3875](https://github.com/NativeScript/nativescript-cli/issues/3875): Add hot module replacement option (`--hmr`) for `tns run [<platform>]` command - it will not to restart the app on js/ts changes.
1472
+ * [Implemented #3886](https://github.com/NativeScript/nativescript-cli/issues/3886): Drop support for macOS Sierra and below.
1473
+ * [Implemented #3887](https://github.com/NativeScript/nativescript-cli/issues/3887): CLI should not allow execution of iOS commands with Xcode 8 and below.
1474
+ * [Implemented #3923](https://github.com/NativeScript/nativescript-cli/pull/3923): Remove requirement for Android Support Repository local installation.
1475
+ * [Implemented #3991](https://github.com/NativeScript/nativescript-cli/issues/3991): Require Android SDK 28 for compilation.
1476
+ * [Implemented #4036](https://github.com/NativeScript/nativescript-cli/issues/4036): Ability to run with bundle option on multiple platforms - `tns run --bundle` command.
1477
+
1478
+ ### Fixed
1479
+ * [Fixed #3549](https://github.com/NativeScript/nativescript-cli/issues/3549): Podfile generation broken on livesync
1480
+ * [Fixed #3686](https://github.com/NativeScript/nativescript-cli/issues/3686): Pod install fails with non-error message for fresh installations
1481
+ * [Fixed #3878](https://github.com/NativeScript/nativescript-cli/pull/3878): Prompter for mail on postinstall is very obligatory
1482
+ * [Fixed #3910](https://github.com/NativeScript/nativescript-cli/pull/3910): `tns platform add ios` should not be executed on non-macOS
1483
+ * [Fixed #3912](https://github.com/NativeScript/nativescript-cli/issues/3912): Build fails with Xcode 10 with error could not find included file `../plugins-debug.xcconfig` in search paths
1484
+ * [Fixed #3920](https://github.com/NativeScript/nativescript-cli/issues/3920): iOS apps will not start with Xcode 10
1485
+ * [Fixed #3932](https://github.com/NativeScript/nativescript-cli/issues/3932): Plugins' platforms directory should not exist in tns_modules
1486
+ * [Fixed #3934](https://github.com/NativeScript/nativescript-cli/issues/3934): Unable to create project from scoped package
1487
+ * [Fixed #3937](https://github.com/NativeScript/nativescript-cli/issues/3937): The app cannot be recovered with livesync after an unhandled exception on iOS
1488
+ * [Fixed #3957](https://github.com/NativeScript/nativescript-cli/issues/3957): Always have to run plugin tests twice on iOS - Failed to load Info.plist from bundle at path
1489
+ * [Fixed #3984](https://github.com/NativeScript/nativescript-cli/issues/3984): Files are not deleted from platforms folder on `tns run` command
1490
+ * [Fixed #3986](https://github.com/NativeScript/nativescript-cli/pull/3986): `tns debug ios` command fails in some cases on iOS Simulator
1491
+ * [Fixed #4007](https://github.com/NativeScript/nativescript-cli/issues/4007): Application built in release has TypeScript files
1492
+ * [Fixed #4010](https://github.com/NativeScript/nativescript-cli/issues/4010): `node_modules` are prepared twice on initial run
1493
+
1494
+
1495
+ 4.2.4 (2018, September 19)
1496
+ ==
1497
+
1498
+ ### Fixed
1499
+ * [Fixed #3832](https://github.com/NativeScript/nativescript-cli/issues/3832): Unable to work with devices with numeric identifiers
1500
+ * [Fixed #3881](https://github.com/NativeScript/nativescript-cli/pull/3881): Replace forum references with stack overflow.
1501
+ * [Fixed #3883](https://github.com/NativeScript/nativescript-cli/issues/3883): CLI installs the app on every change
1502
+ * [Fixed #3893](https://github.com/NativeScript/nativescript-cli/pull/3893): [API] Errors are raised when emulator lost/found event is raised.
1503
+ * [Fixed #3893](https://github.com/NativeScript/nativescript-cli/pull/3893): [API] Android emulator image display names are not correct.
1504
+ * [Fixed #3894](https://github.com/NativeScript/nativescript-cli/issues/3894): `Socket Error: Error: write ECONNABORTED` is raised when trying to run on Android
1505
+
1506
+
1507
+ 4.2.3 (2018, August 27)
1508
+ ==
1509
+
1510
+ ### Fixed
1511
+ * [Fixed #3840](https://github.com/NativeScript/nativescript-cli/issues/3840): Unable to reconnect to iOS Simulator when debugging
1512
+ * [Fixed #3824](https://github.com/NativeScript/nativescript-cli/issues/3824): `tns create` command not using proxy set with `tns proxy set`
1513
+
1514
+
1515
+ 4.2.2 (2018, August 17)
1516
+ ==
1517
+
1518
+ ### Fixed
1519
+ * [Fixed #3818](https://github.com/NativeScript/nativescript-cli/issues/3818): Unable to start application on Android device with a custom activity containing capital letters
1520
+ * [Fixed #3820](https://github.com/NativeScript/nativescript-cli/issues/3820): A command help is shown on native build error
1521
+ * [Fixed #3821](https://github.com/NativeScript/nativescript-cli/issues/3821): [Sporadic] Unable to start iOS debugger from VSCode extension
1522
+
1523
+
1524
+ 4.2.1 (2018, August 10)
1525
+ ==
1526
+
1527
+ ### Fixed
1528
+ * [Fixed #3763](https://github.com/NativeScript/nativescript-cli/issues/3763): Duplicated entries in `tns run` log while livesyncing
1529
+ * [Fixed #3802](https://github.com/NativeScript/nativescript-cli/issues/3802): Unable to use templates without `App_Resources`
1530
+ * [Fixed #3803](https://github.com/NativeScript/nativescript-cli/issues/3803): `tns run ios` command fails if tns-ios version is a tag
1531
+ * [Fixed #3805](https://github.com/NativeScript/nativescript-cli/issues/3805): `tns run android` fails in case you do not have Android emulator images
1532
+
1533
+
1534
+ 4.2.0 (2018, August 7)
1535
+ ==
1536
+
1537
+ ### New
1538
+ * [Implemented #3023](https://github.com/NativeScript/nativescript-cli/issues/3023): `tns device --available-devices` to list all emulator images
1539
+ * [Implemented #3717](https://github.com/NativeScript/nativescript-cli/pull/3717): Speed up device detection
1540
+ * [Implemented #3718](https://github.com/NativeScript/nativescript-cli/issues/3718): Install the Android project dependencies only when needed
1541
+ * [Implemented #3719](https://github.com/NativeScript/nativescript-cli/issues/3719): Build plugins with the same gradle versions as the runtime
1542
+ * [Implemented #3735](https://github.com/NativeScript/nativescript-cli/pull/3735): Speed up adding native platform
1543
+ * [Implemented #3750](https://github.com/NativeScript/nativescript-cli/pull/3750): Add hook for `checkForChanges`
1544
+ * [Implemented #3733](https://github.com/NativeScript/nativescript-cli/issues/3733): [API] Expose API for listing and starting emulators and simulators when using CLI as library.
1545
+ * [Implemented #3797](https://github.com/NativeScript/nativescript-cli/issues/3797): Use sockets to LiveSync changes on Android
1546
+ * [Implemented #3798](https://github.com/NativeScript/nativescript-cli/issues/3798): Allow templates to be full application - full support
1547
+
1548
+ ### Fixed
1549
+ * [Fixed #2485](https://github.com/NativeScript/nativescript-cli/issues/2485): EACCES (Permission denied) when livesync Angular projects on Samsung devices
1550
+ * [Fixed #2547](https://github.com/NativeScript/nativescript-cli/issues/2547): `tns-android` remains inside dependencies when `tns build/run android` fails
1551
+ * [Fixed #3132](https://github.com/NativeScript/nativescript-cli/issues/3132): Xcode 9: Requires Provisioning Profile Error
1552
+ * [Fixed #3602](https://github.com/NativeScript/nativescript-cli/issues/3602): Livesync does not work on Android P
1553
+ * [Fixed #3610](https://github.com/NativeScript/nativescript-cli/issues/3610): Livesync ignores aar file changes inside a plugin
1554
+ * [Fixed #3672](https://github.com/NativeScript/nativescript-cli/issues/3672): `tns run/debug ios --syncAllFiles` with cocoapods has issues
1555
+ * [Fixed #3707](https://github.com/NativeScript/nativescript-cli/issues/3707): CLI generates aar files on changes in `app/` (livesync with webpack)
1556
+ * [Fixed #3710](https://github.com/NativeScript/nativescript-cli/issues/3710): CLI regenerates ALL aar files on changes in `node_modules`
1557
+ * [Fixed #3723](https://github.com/NativeScript/nativescript-cli/issues/3723): iOS build for device fails with Xcode 10 beta versions
1558
+ * [Fixed #3729](https://github.com/NativeScript/nativescript-cli/pull/3729): File references inside .pbxproject are incorrect when there's space in project path
1559
+ * [Fixed #3741](https://github.com/NativeScript/nativescript-cli/issues/3741): Platforms folder need to be removed after a bitcode error
1560
+ * [Fixed #3744](https://github.com/NativeScript/nativescript-cli/pull/3744): During all gradle operations "Gradle build" message is printed
1561
+ * [Fixed #3751](https://github.com/NativeScript/nativescript-cli/issues/3751): Problem building nativescript-google-maps-sdk on Android
1562
+ * [Fixed #3752](https://github.com/NativeScript/nativescript-cli/issues/3752): Increase the default timeout for debug command from 5 to 10 seconds
1563
+ * [Fixed #3768](https://github.com/NativeScript/nativescript-cli/pull/3768): Skip preparation of plugins native files in case they are not changed
1564
+ * [Fixed #3794](https://github.com/NativeScript/nativescript-cli/pull/3794): Update lodash to fix a security vulnerability.
1565
+
1566
+
1567
+ 4.1.2 (2018, June 26)
1568
+ ==
1569
+
1570
+ ### Fixed
1571
+
1572
+ * [Fixed #2283](https://github.com/NativeScript/nativescript-cli/issues/2283): On adding test frameworks their peerDependencies are not installed
1573
+ * [Fixed #3689](https://github.com/NativeScript/nativescript-cli/issues/3689): `tns test <platform>` throws exception
1574
+
1575
+
1576
+ 4.1.1 (2018, June 19)
1577
+ ==
1578
+
1579
+ ### Fixed
1580
+
1581
+ * [Fixed #3625](https://github.com/NativeScript/nativescript-cli/issues/3625): `tns run ios --device fakeId` start random emulator
1582
+ * [Fixed #3633](https://github.com/NativeScript/nativescript-cli/pull/3633): iOS Debugging: Close frontend socket unconditionally
1583
+ * [Fixed #3644](https://github.com/NativeScript/nativescript-cli/issues/3644): `tns run ios --justlaunch` do not exit on real iOS devices
1584
+ * [Fixed #3658](https://github.com/NativeScript/nativescript-cli/issues/3658): Don't rebuild application for android when something is changed in App_Resources/iOS
1585
+ * [Fixed #3660](https://github.com/NativeScript/nativescript-cli/issues/3660): A deprecation warning is shown when `tns debug ios` command is executed with node v10
1586
+ * [Fixed #3662](https://github.com/NativeScript/nativescript-cli/pull/3662): Fix project creation when template v2 is used
1587
+ * [Fixed #3666](https://github.com/NativeScript/nativescript-cli/issues/3666): Unable to generate icons when the Contents.json is not generated by Xcode
1588
+ * [Fixed #3675](https://github.com/NativeScript/nativescript-cli/pull/3675): File connections to iOS device work for a single app only
1589
+ * [Fixed #3677](https://github.com/NativeScript/nativescript-cli/issues/3677): docs: Add alias to plugin add/install
1590
+ * [Fixed #3682](https://github.com/NativeScript/nativescript-cli/pull/3682): Use google as default repo when building plugins
1591
+
1592
+
1593
+ 4.1.0 (2018, May 31)
1594
+ ==
1595
+
1596
+ ### New
1597
+ * [Implemented #3321](https://github.com/NativeScript/nativescript-cli/issues/3321): Work simultaneously with multiple iOS Simulators
1598
+ * [Implemented #3404](https://github.com/NativeScript/nativescript-cli/issues/3404): Start LiveSync watcher earlier during run
1599
+ * [Implemented #3570](https://github.com/NativeScript/nativescript-cli/issues/3570): Add deprecation message for macOS versions under High Sierra
1600
+ * [Implemented #3581](https://github.com/NativeScript/nativescript-cli/issues/3581): Drop support for Node.js 4.x.x
1601
+ * [Implemented #3582](https://github.com/NativeScript/nativescript-cli/issues/3582): Deprecate support for Node.js 6.x.x
1602
+ * [Implemented #3605](https://github.com/NativeScript/nativescript-cli/issues/3605): Support Java 10
1603
+ * [Implemented #3636](https://github.com/NativeScript/nativescript-cli/issues/3636): Allow templates to be full applications - BETA support
1604
+ * [Implemented #3650](https://github.com/NativeScript/nativescript-cli/issues/3650): Enable using source code in iOS part of plugins
1605
+
1606
+ ### Fixed
1607
+ * [Fixed #1398](https://github.com/NativeScript/nativescript-cli/issues/1398): CLI detects iOS devices connected over Wi-fi and fails to work with them
1608
+ * [Fixed #2831](https://github.com/NativeScript/nativescript-cli/issues/2831): `tns debug android --start` releases the terminal session
1609
+ * [Fixed #3580](https://github.com/NativeScript/nativescript-cli/pull/3580): API: isValidNativeScriptProject returns incorrect result
1610
+ * [Fixed #3593](https://github.com/NativeScript/nativescript-cli/issues/3593): Tracking for used Debug tools is not correct
1611
+ * [Fixed #3629](https://github.com/NativeScript/nativescript-cli/issues/3629): `tns debug android --start` does not print application console.logs
1612
+
1613
+
1614
+ 4.0.2 (2018, May 18)
1615
+ ==
1616
+
1617
+ ### Fixed
1618
+ * [Fixed #3595](https://github.com/NativeScript/nativescript-cli/issues/3595): Do not track local paths in Analytics
1619
+ * [Fixed #3597](https://github.com/NativeScript/nativescript-cli/issues/3597): Users who subscribe to Progess Newsletter are not informed for the privacy policy
1620
+
1621
+ 4.0.1 (2018, May 11)
1622
+ ==
1623
+
1624
+ ### New
1625
+ * [Implemented #3535](https://github.com/NativeScript/nativescript-cli/pull/3535) API: Expose androidProcessService - getAppProcessId method
1626
+
1627
+ ### Fixed
1628
+ * [Fixed #1548](https://github.com/NativeScript/nativescript-cli/issues/1548): `--sdk` flag not working properly when starting emulators in iOS
1629
+ * [Fixed #2131](https://github.com/NativeScript/nativescript-cli/issues/2131): Simulators with `(` in name are not started after `tns run ios --device <device_name>`
1630
+ * [Fixed #2727](https://github.com/NativeScript/nativescript-cli/issues/2727): Passing more than one parameter on `tns create` returns unappropriate error message
1631
+ * [Fixed #3529](https://github.com/NativeScript/nativescript-cli/issues/3529): iOS logging does not work on multiple simulators
1632
+ * [Fixed #3536](https://github.com/NativeScript/nativescript-cli/issues/3536): Message for tracking in Google Analytics is always printed
1633
+ * [Fixed #3554](https://github.com/NativeScript/nativescript-cli/issues/3554): NativeScript is not compatible with Node.js 10.x.x
1634
+ * [Fixed #3557](https://github.com/NativeScript/nativescript-cli/pull/3557): Asset generation should not fail in case some App_Resources are missing.
1635
+ * [Fixed #3560](https://github.com/NativeScript/nativescript-cli/issues/3560): Android build fails when path to app has space and plugin should be build
1636
+
1637
+
1638
+ 4.0.0 (2018, April 10)
1639
+ ==
1640
+
1641
+ ### New
1642
+ * [Implemented #2632](https://github.com/NativeScript/nativescript-cli/issues/2632) Guidance for new CLI users
1643
+ * [Implemented #3243](https://github.com/NativeScript/nativescript-cli/issues/3243) 'Scss' file changes trigger app refresh instead reloading the view and apply generated 'css'
1644
+ * [Implemented #3248](https://github.com/NativeScript/nativescript-cli/issues/3248) Support JDK_HOME and JAVA_HOME
1645
+ * [Implemented #3257](https://github.com/NativeScript/nativescript-cli/issues/3257) Make {N} project structure configurable
1646
+ * [Implemented #3317](https://github.com/NativeScript/nativescript-cli/issues/3317) Support livesync with webpack
1647
+ * [Implemented #3449](https://github.com/NativeScript/nativescript-cli/pull/3449) Track Vue.js project type
1648
+ * [Implemented #3496](https://github.com/NativeScript/nativescript-cli/issues/3496) Generate assets for the mobile application
1649
+ * [Implemented #3497](https://github.com/NativeScript/nativescript-cli/issues/3497) Command to migrate Android resources to 4.0.0 structure
1650
+ * [Implemented #3516](https://github.com/NativeScript/nativescript-cli/issues/3516) Improve Getting Started Experience
1651
+
1652
+ ### Fixed
1653
+ * [Fixed #3151](https://github.com/NativeScript/nativescript-cli/issues/3151): Install fails if user setting file is not valid json
1654
+ * [Fixed #3324](https://github.com/NativeScript/nativescript-cli/issues/3324): Error when iOS simulator's window is closed
1655
+ * [Fixed #3442](https://github.com/NativeScript/nativescript-cli/issues/3442): Unnecessary second build upon `tns run android`
1656
+ * [Fixed #3451](https://github.com/NativeScript/nativescript-cli/issues/3451): `tns plugin remove` fails with : Cannot convert undefined or null to object
1657
+ * [Fixed #3470](https://github.com/NativeScript/nativescript-cli/issues/3470): Error when we are publishing to AppStore
1658
+ * [Fixed #3481](https://github.com/NativeScript/nativescript-cli/issues/3481): Cannot log in users on iOS simulator with kinvey-nativescript-sdk
1659
+ * [Fixed #3514](https://github.com/NativeScript/nativescript-cli/pull/3514): Incorrect error is shown when xcrun simctl is not configured
1660
+
1661
+ 3.4.3 (2018, March 02)
1662
+ ==
1663
+
1664
+ ### New
1665
+ * [Implemented #3407](https://github.com/NativeScript/nativescript-cli/issues/3407) Allow templates to predefine plugin configurations in `package.json`
1666
+ * [Implemented #3408](https://github.com/NativeScript/nativescript-cli/issues/3408) Add additional tracking for users who have exported projects from Playground
1667
+
1668
+
1669
+ 3.4.2 (2018, February 01)
1670
+ ==
1671
+
1672
+ ### New
1673
+ * [Implemented #2127](https://github.com/NativeScript/nativescript-cli/issues/2127): Feature Request: Ability to disable spinner during install process
1674
+
1675
+ ### Fixed
1676
+ * [Fixed #3337](https://github.com/NativeScript/nativescript-cli/issues/3337): Empty Chrome DevTools when using tns debug ios for iOS Simulator
1677
+ * [Fixed #3338](https://github.com/NativeScript/nativescript-cli/issues/3338): `tns debug ios --chrome` can not stop on first line
1678
+
1679
+
1680
+ 3.4.1 (2018, January 11)
1681
+ ==
1682
+
1683
+ ### New
1684
+ * [Implemented #3313](https://github.com/NativeScript/nativescript-cli/pull/3313): Allow using Android SDK 27
1685
+
1686
+ ### Fixed
1687
+ * [Fixed #3280](https://github.com/NativeScript/nativescript-cli/issues/3280): App_Resources are duplicated on consecutive builds with --bundle
1688
+ * [Fixed #3183](https://github.com/NativeScript/nativescript-cli/issues/3183): `tns debug ios --chrome` keeps changing port on every livesync update
1689
+ * [Fixed #3148](https://github.com/NativeScript/nativescript-cli/issues/3148): Fix detection of Javac version
1690
+ * [Fixed #3302](https://github.com/NativeScript/nativescript-cli/pull/3302): fix(ios-inspector): Update cached inspector package to latest compatible version
1691
+ * [Fixed #3311](https://github.com/NativeScript/nativescript-cli/pull/3311): Allow setting authenthicated proxy on Windows when Visual C++ redistributable is not installed
1692
+
1693
+
1694
+ 3.4.0 (2017, December 20)
1695
+ ==
1696
+
1697
+ ### New
1698
+ * [Implemented #3171](https://github.com/NativeScript/nativescript-cli/issues/3171): Make --chrome the default for tns debug ios
1699
+
1700
+ ### Fixed
1701
+ * [Fixed #3268](https://github.com/NativeScript/nativescript-cli/issues/3268): tns run android - EMFILE: too many open files
1702
+ * [Fixed #3202](https://github.com/NativeScript/nativescript-cli/issues/3202): `tns update <version>` does not work
1703
+ * [Fixed #3187](https://github.com/NativeScript/nativescript-cli/issues/3187): Android tns debug, crashing when there is a response from server
1704
+
1705
+ 3.3.1 (2017, November 17)
1706
+ ==
1707
+
1708
+ ### Fixed
1709
+ * [Fixed #3164](https://github.com/NativeScript/nativescript-cli/issues/3164): `npm run build-*-bundle` gets stuck at nativescript-unit-test-runner hook.
1710
+ * [Fixed #3182](https://github.com/NativeScript/nativescript-cli/issues/3182): CLI fails when unable to start Analytics Broker process.
1711
+
1712
+ 3.3.0 (2017, October 26)
1713
+ ==
1714
+
1715
+ ### New
1716
+
1717
+ * [Implemented #3076](https://github.com/NativeScript/nativescript-cli/issues/3076): NativeScript setup scripts should have silent installer mode.
1718
+
1719
+ ### Fixed
1720
+ * [Fixed #3141](https://github.com/NativeScript/nativescript-cli/issues/3141): No console.log output Xcode 9 iOS 11.
1721
+ * [Fixed #3016](https://github.com/NativeScript/nativescript-cli/issues/3016): tns_modules randomly appears in app folder and breaks build.
1722
+ * [Fixed #2967](https://github.com/NativeScript/nativescript-cli/issues/2967): Create plugin by static static libraries error.
1723
+
1724
+ 3.2.0 (2017, September 7)
1725
+ ==
1726
+
1727
+ ### Fixed
1728
+ * [Fixed #3073](https://github.com/NativeScript/nativescript-cli/issues/3073): Saving two platform-specific files during LiveSync causes an exception
1729
+ * [Fixed #3054](https://github.com/NativeScript/nativescript-cli/issues/3054): `tns prepare <platform>` fails with Unhandled promise rejection
1730
+ * [Fixed #3048](https://github.com/NativeScript/nativescript-cli/issues/3048): Fixed setup script for Windows
1731
+ * [Fixed #3046](https://github.com/NativeScript/nativescript-cli/issues/3046): Export fails for Xcode 9 beta 5
1732
+ * [Fixed #3026](https://github.com/NativeScript/nativescript-cli/issues/3026): Fixed scripts for local installation of NativeScript on macOS
1733
+ * [Fixed #3021](https://github.com/NativeScript/nativescript-cli/issues/3021): If multiple devices from the same platform are connected `tns debug <platform> --start` should ask you which of them to use
1734
+ * [Fixed #3020](https://github.com/NativeScript/nativescript-cli/issues/3020): iOS Archive Export unexpected behavior when using AdHoc or AppStore provisioning
1735
+ * [Fixed #3007](https://github.com/NativeScript/nativescript-cli/issues/3007): Application hangs on iOS during LiveSync
1736
+ * [Fixed #3006](https://github.com/NativeScript/nativescript-cli/issues/3006): Add help for --provision option
1737
+ * [Fixed #2952](https://github.com/NativeScript/nativescript-cli/issues/2952): Do not select automatically on which Android device to start debugging
1738
+ * [Fixed #2946](https://github.com/NativeScript/nativescript-cli/issues/2946): Can't run iOS app on case-sensitive filesystem on macOS
1739
+ * [Fixed #2934](https://github.com/NativeScript/nativescript-cli/issues/2934): Running `tns build android --release ...` uses *.debug.* files in build output
1740
+ * [Fixed #2888](https://github.com/NativeScript/nativescript-cli/issues/2888): Build in release mode for iOS doesn't seem to set the production mode for APN
1741
+ * [Fixed #2825](https://github.com/NativeScript/nativescript-cli/issues/2825): LiveSync won't work if appId doesn't match - no warning/error
1742
+ * [Fixed #2818](https://github.com/NativeScript/nativescript-cli/issues/2818): Exception and stack trace is not shown in terminal for Android
1743
+ * [Fixed #2810](https://github.com/NativeScript/nativescript-cli/issues/2810): Cannot read property 'match' of null error when installing nativescript cli
1744
+ * [Fixed #2728](https://github.com/NativeScript/nativescript-cli/issues/2728): `tns run ios --device fakeID` starts iOS Simulator
1745
+ * [Fixed #2716](https://github.com/NativeScript/nativescript-cli/issues/2716): Webpack issues when build in release mode
1746
+ * [Fixed #2657](https://github.com/NativeScript/nativescript-cli/issues/2657): `tns run android/ios` does not remove folders correctly
1747
+ * [Fixed #2515](https://github.com/NativeScript/nativescript-cli/issues/2515): CLI captures logs from Chrome and Cordova apps
1748
+ * [Fixed #2501](https://github.com/NativeScript/nativescript-cli/issues/2501): Manual signing with distribution provisioning profile fails with NS 2.5
1749
+
1750
+ 3.1.3 (2017, July 25)
1751
+ ==
1752
+
1753
+ ### New
1754
+
1755
+ * [Implemented #2470](https://github.com/NativeScript/nativescript-cli/issues/2470): Establish a recommended workflow for simultaneous Android & iOS development - use `tns run` command.
1756
+ * [Implemented #2873](https://github.com/NativeScript/nativescript-cli/issues/2873): Add official support for Node 8.
1757
+ * [Implemented #2894](https://github.com/NativeScript/nativescript-cli/issues/2894): Support for Android 8 (API-26) and Android Build Tools 26.0.0.
1758
+
1759
+ ### Fixed
1760
+ * [Fixed #2361](https://github.com/NativeScript/nativescript-cli/issues/2361): 'iTunes is not installed...' on Windows when using `tns run android`.
1761
+ * [Fixed #2870](https://github.com/NativeScript/nativescript-cli/issues/2870): CLI can not create projects with custom templates when npm 5 is used .
1762
+ * [Fixed #2871](https://github.com/NativeScript/nativescript-cli/issues/2871): CLI can not add platform from local tgz package when npm 5 is used .
1763
+ * [Fixed #2889](https://github.com/NativeScript/nativescript-cli/issues/2889): `tns prepare ios --provision` starts simulator.
1764
+ * [Fixed #2936](https://github.com/NativeScript/nativescript-cli/issues/2936): CFBundleURLTypes cannot be overridden from a plugin.
1765
+ * [Fixed #2941](https://github.com/NativeScript/nativescript-cli/issues/2941): Duplicate console logs with LiveSync in 3.1.
1766
+ * [Fixed #2965](https://github.com/NativeScript/nativescript-cli/issues/2965): Unmet peerDependencies break adding of platform.
1767
+ * [Fixed #2966](https://github.com/NativeScript/nativescript-cli/issues/2966): Improve selection of device/emulator for debugging.
1768
+ * [Fixed #2975](https://github.com/NativeScript/nativescript-cli/issues/2975): CLI Process hangs on native build failure.
1769
+ * [Fixed #2986](https://github.com/NativeScript/nativescript-cli/issues/2986): Preparing a project for a platform causes changes for the other platform.
1770
+ * [Fixed #2988](https://github.com/NativeScript/nativescript-cli/issues/2988): CLI fails with EPIPE during `$ tns run ios`.
1771
+
1772
+ 3.1.2 (2017, July 06)
1773
+ ==
1774
+
1775
+ ### Fixed
1776
+ * [Fixed #2950](https://github.com/NativeScript/nativescript-cli/issues/2950): Unable to provide user input on postinstall of plugin
1777
+
1778
+ 3.1.1 (2017, June 28)
1779
+ ==
1780
+
1781
+ ### Fixed
1782
+ * [Fixed #2879](https://github.com/NativeScript/nativescript-cli/issues/2879): Livesync does not apply changes in CSS files on physical iOS devices
1783
+ * [Fixed #2892](https://github.com/NativeScript/nativescript-cli/issues/2892): Not copying the CFBundleURLTypes from the plist file to the project
1784
+ * [Fixed #2916](https://github.com/NativeScript/nativescript-cli/issues/2916): If no device or emulator is attached `tns debug android` kills the commandline process and doesn't start an emulator
1785
+ * [Fixed #2923](https://github.com/NativeScript/nativescript-cli/issues/2923): Fix asking for user email on postinstall
1786
+ * [Fixed #2929](https://github.com/NativeScript/nativescript-cli/issues/2929): Android release builds with webpack disregards plugin's gradle dependencies.
1787
+
1788
+
1789
+ 3.1.0 (2017, June 22)
1790
+ ==
1791
+
1792
+ ### Fixed
1793
+
1794
+ * [Fixed #2905](https://github.com/NativeScript/nativescript-cli/issues/2905): Doctor command fails when ANDROID_HOME is not set
1795
+ * [Fixed #2874](https://github.com/NativeScript/nativescript-cli/issues/2874): Unable to build and deploy app to iTunes: Unable to connect to iTunes Connect
1796
+ * [Fixed #2856](https://github.com/NativeScript/nativescript-cli/issues/2856): DevDependencies' dependencies are added to native project
1797
+ * [Fixed #2860](https://github.com/NativeScript/nativescript-cli/issues/2860): `tns run ios` fails on iOS devices after rebuilding application in the process
1798
+ * [Fixed #2850](https://github.com/NativeScript/nativescript-cli/issues/2850): Document properly the "Emulate Options"
1799
+ * [Fixed #2757](https://github.com/NativeScript/nativescript-cli/issues/2757): `tns build ios --forDevice --path TestApp` start simulator
1800
+ * [Fixed #2720](https://github.com/NativeScript/nativescript-cli/issues/2720): Livesync error with webstorm temporary files
1801
+ * [Fixed #2716](https://github.com/NativeScript/nativescript-cli/issues/2716): Web pack issues when build in release mode
1802
+ * [Fixed #2501](https://github.com/NativeScript/nativescript-cli/issues/2501): Manual signing with distribution provisioning profile fails with NS 2.5
1803
+ * [Fixed #2446](https://github.com/NativeScript/nativescript-cli/issues/2446): tns run--device NonexistentName retunrs different messages for ios and android
1804
+ * [Fixed #1358](https://github.com/NativeScript/nativescript-cli/issues/1358): Webstorm Ubuntu .bash_profile
1805
+ * [Fixed #521](https://github.com/NativeScript/nativescript-cli/issues/521): EPERM error with .local/share directory after installing CLI
1806
+
1807
+ ### Deprecated
1808
+
1809
+ * [Implemented #2329](https://github.com/NativeScript/nativescript-cli/issues/2329): Remove the emulate command
1810
+
1811
+ 3.0.3 (2017, June 1)
1812
+ ==
1813
+
1814
+ ### Fixed
1815
+
1816
+ * [Fix #2855](https://github.com/NativeScript/nativescript-cli/issues/2855): iOS inspector not installed with npm 5
1817
+
1818
+ 3.0.2 (2017, May 30)
1819
+ ==
1820
+
1821
+ ### Fixed
1822
+
1823
+ * Removed restart of the App if HTML/CSS file was modified. The issue is fixed in the Modules **3.0.1** and we can again just refresh the app on change.
1824
+ * [Fix #2852](https://github.com/NativeScript/nativescript-cli/pull/2852): Fix prepare for android when building with webpack
1825
+
1826
+ 3.0.1 (2017, May 11)
1827
+ ==
1828
+
1829
+ ### Fixed
1830
+
1831
+ * [Fix #2732](https://github.com/NativeScript/nativescript-cli/issues/2732): Livesync crashes app every OTHER time on iOS with 3.0.0-rc.2
1832
+ * [Fix #2764](https://github.com/NativeScript/nativescript-cli/issues/2764): Error when executing "tns run ios" with 3.0 on a project that is located in a directory path with "spaces"
1833
+
1834
+ 2.5.5 (2017, May 11)
1835
+ ==
1836
+
1837
+ ### Fixed
1838
+
1839
+ * [Fix #2782](https://github.com/NativeScript/nativescript-cli/issues/2782): [2.5.*] tns run always add latest platform
1840
+
1841
+ 3.0.0 (2017, May 3)
1842
+ ==
1843
+
1844
+ ### Fixed
1845
+
1846
+ * [Fixed #2500](https://github.com/NativeScript/nativescript-cli/issues/2500): Debug on device does not sync file changes
1847
+ * [Fixed #2639](https://github.com/NativeScript/nativescript-cli/issues/2639): Build continues after gradle build fails
1848
+ * [Fixed #1882](https://github.com/NativeScript/nativescript-cli/issues/1882): Run/debug commands should not try to deploy on connected but not paired devices
1849
+ * [Fixed #2673](https://github.com/NativeScript/nativescript-cli/issues/2673): `tns device ios` does not list real devices if simulator is running.
1850
+ * [Fixed #2685](https://github.com/NativeScript/nativescript-cli/issues/2685): `tns run ios` starts iOS Simulator even if physical iOS device is attached
1851
+ * [Fixed #2661](https://github.com/NativeScript/nativescript-cli/issues/2661): Adding new files during livesync doesn't succeed on iOS Devices
1852
+ * [Fixed #2650](https://github.com/NativeScript/nativescript-cli/issues/2650): Release Build Android error: gradlew.bat failed with exit code 1 When Path contains Space
1853
+ * [Fixed #2125](https://github.com/NativeScript/nativescript-cli/issues/2125): NativeScript setup script fails on Mac
1854
+ * [Fixed #2697](https://github.com/NativeScript/nativescript-cli/issues/2697): App_Resources being copied into app RAW
1855
+
1856
+ 3.0.0-RC.1 (2017, March 29)
1857
+ ==
1858
+
1859
+ ### New
1860
+
1861
+ * [Implemented #2170](https://github.com/NativeScript/nativescript-cli/issues/2170): CLI should report adb install errors
1862
+ * [Implemented #2204](https://github.com/NativeScript/nativescript-cli/issues/2204): Remove fibers from CLI and use async/await
1863
+ * [Implemented #2349](https://github.com/NativeScript/nativescript-cli/issues/2349): Command "emulate" and options "--emulator/--device/--avd" are a bit confusing to use
1864
+ * [Implemented #2513](https://github.com/NativeScript/nativescript-cli/issues/2513): Allow templates to omit App_Resources
1865
+ * [Implemented #2633](https://github.com/NativeScript/nativescript-cli/issues/2633): Deprecate `tns livesync` command
1866
+
1867
+ ### Fixed
1868
+
1869
+ * [Fixed #2225](https://github.com/NativeScript/nativescript-cli/issues/2225): The tns debug ios command hangs on launch screen
1870
+ * [Fixed #2357](https://github.com/NativeScript/nativescript-cli/issues/2357): --copy-to option is broken
1871
+ * [Fixed #2446](https://github.com/NativeScript/nativescript-cli/issues/2446): tns emulate --device NonexistentName retunrs different messages for ios and android
1872
+ * [Fixed #2486](https://github.com/NativeScript/nativescript-cli/issues/2486): tns run android (without started emulator/connected device) fails to start app
1873
+ * [Fixed #2487](https://github.com/NativeScript/nativescript-cli/issues/2487): Exception: The plugin tns-android@2.5.0 is already installed
1874
+ * [Fixed #2496](https://github.com/NativeScript/nativescript-cli/issues/2496): `tns platform clean android` does not maintain the same version of the runtimes
1875
+ * [Fixed #2511](https://github.com/NativeScript/nativescript-cli/issues/2511): Second run of `tns run android --release` does not respect changes in application code
1876
+ * [Fixed #2557](https://github.com/NativeScript/nativescript-cli/issues/2557): 2.5.1 iOS incremental build generates inconsistent binary
1877
+ * [Fixed #2559](https://github.com/NativeScript/nativescript-cli/issues/2559): `tns init` fails, `ins init --force` produce invalid app
1878
+ * [Fixed #2560](https://github.com/NativeScript/nativescript-cli/issues/2560): `tns run` should do full prepare/rebuild if something in App_Resources is changes
1879
+ * [Fixed #2561](https://github.com/NativeScript/nativescript-cli/issues/2561): Fix prepare process terminates if passing too many arguments to a new node process
1880
+ * [Fixed #2641](https://github.com/NativeScript/nativescript-cli/issues/2641): Removed files are not sync correctly on android
1881
+ * [Fixed #2642](https://github.com/NativeScript/nativescript-cli/issues/2642): `tns run ios/android` sync hidden files
1882
+ * [Fixed #2653](https://github.com/NativeScript/nativescript-cli/issues/2653): Copy folder with files inside app breaks live sync
1883
+
1884
+ 2.5.3 (2017, March 20)
1885
+ ==
1886
+
1887
+ ### New
1888
+
1889
+ * [Implemented #2583](https://github.com/NativeScript/nativescript-cli/issues/2583): Add support for Android SDK Tools 25.2.3
1890
+
1891
+ 2.5.2 (2017, February 24)
1892
+ ==
1893
+
1894
+ ### Fixed
1895
+
1896
+ * [Fixed #2564](https://github.com/NativeScript/nativescript-cli/issues/2564): Add support for Node.js 7.6.0
1897
+
1898
+ 2.5.1 (2017, February 17)
1899
+ ==
1900
+
1901
+ ### Fixed
1902
+
1903
+ * [Fixed #2476](https://github.com/NativeScript/nativescript-cli/issues/2476): `tns run ios` unable to sync files on iOS Simulator
1904
+ * [Fixed #2491](https://github.com/NativeScript/nativescript-cli/issues/2491): "ERROR Error: Could not find module" after 2.5 upgrade
1905
+ * [Fixed #2472](https://github.com/NativeScript/nativescript-cli/issues/2472): Livesync watches .DS_Store files
1906
+ * [Fixed #2469](https://github.com/NativeScript/nativescript-cli/issues/2469): `tns run` can get stuck in a loop since 2.5
1907
+ * [Fixed #2512](https://github.com/NativeScript/nativescript-cli/issues/2512): Run should not watch hidden files
1908
+ * [Fixed #2521](https://github.com/NativeScript/nativescript-cli/issues/2521): Enable requesting user input during plugin installation
1909
+
1910
+ 2.5.0 (2017, February 1)
1911
+ ==
1912
+ ### New
1913
+ * [Implemented #2330](https://github.com/NativeScript/nativescript-cli/issues/2330) and [#1366](https://github.com/NativeScript/nativescript-cli/issues/1366): Run command syncs and watches for changes
1914
+ * [Implemented #2277](https://github.com/NativeScript/nativescript-cli/issues/2277): Fast livesync of images
1915
+ * [Implemented #2276](https://github.com/NativeScript/nativescript-cli/issues/2276): Support plugin development when using the watch option
1916
+ * [Implemented #2260]( https://github.com/NativeScript/nativescript-cli/issues/2260): Deprecate support for Node.js 4.x feature
1917
+ * [Implemented #2112]( https://github.com/NativeScript/nativescript-cli/issues/2112): Update webpack plugin to run as a npm script feature
1918
+ * [Implemented #1906]( https://github.com/NativeScript/nativescript-cli/issues/1906): TNS Doctor Android tools detection feature
1919
+ * [Implemented #1845](https://github.com/NativeScript/nativescript-cli/issues/1845): Remove NPM as a dependency, use the NPM installed on users' machine feature
1920
+
1921
+ ### Fixed
1922
+
1923
+ **Install and setup issues**
1924
+
1925
+ * [Fixed #2302](https://github.com/NativeScript/nativescript-cli/issues/2302): App runs in Xcode and CLI but not on test flight
1926
+ * [Fixed #1922](https://github.com/NativeScript/nativescript-cli/issues/1922): TNS doctor does not detect if JDK is not installed and throws an error
1927
+ * [Fixed #2312](https://github.com/NativeScript/nativescript-cli/issues/2312): Creating app w/ nativescript@next is not deploying App_Resources folder
1928
+ * [Fixed #2308](https://github.com/NativeScript/nativescript-cli/issues/2308): Using nativescript@next brings multiple libraries into node_modules
1929
+ * [Fixed #2301](https://github.com/NativeScript/nativescript-cli/issues/2301): Rework logic of handling 2 package.json files after tns create
1930
+ * [Fixed #2299](https://github.com/NativeScript/nativescript-cli/issues/2299): tns create TestApp --ng (or --tsc) takes too long
1931
+ * [Fixed #2257](https://github.com/NativeScript/nativescript-cli/issues/2257): {N} doesn't include @namespace node_modules
1932
+
1933
+ **Build, Prepare, Run issues**
1934
+
1935
+ * [Fixed #2213](https://github.com/NativeScript/nativescript-cli/issues/2213): When switching build configurations plugin platform files are copied into assets
1936
+ * [Fixed #2177](https://github.com/NativeScript/nativescript-cli/issues/2177): Prepare does not flatten scoped dependencies
1937
+ * [Fixed #2150](https://github.com/NativeScript/nativescript-cli/issues/2150): TNS run command broken with using --watch
1938
+ * [Fixed #1740](https://github.com/NativeScript/nativescript-cli/issues/1740): Dev Dependencies (like Gulp, etc) getting built and build is failing because of which Gulp * [Fixed #](): integration is not working currently.
1939
+ * [Fixed #2270](https://github.com/NativeScript/nativescript-cli/issues/2270): App is not rebuilt after removing plugin with native dependencies bug
1940
+ * [Fixed #2253](https://github.com/NativeScript/nativescript-cli/issues/2253): Prepare command with bundle option doesn't copy files
1941
+
1942
+ **Livesync issues**
1943
+
1944
+ * [Fixed #2341](https://github.com/NativeScript/nativescript-cli/issues/2341): LiveSync after {N} update uses old app on the device
1945
+ * [Fixed #2325](https://github.com/NativeScript/nativescript-cli/issues/2325): tns livesync ios --watch --emulator doesn't watch html or sass changes, only ts
1946
+ * [Fixed #2221](https://github.com/NativeScript/nativescript-cli/issues/2221): Provision to watch files in symlinked directories for livesync command
1947
+ * [Fixed #2267](https://github.com/NativeScript/nativescript-cli/issues/2267): Cannot run livesync with ios simulator
1948
+
1949
+ **Emulate/ Device issues**
1950
+
1951
+ * [Fixed #1522](https://github.com/NativeScript/nativescript-cli/issues/1522): Cannot specify emulator device while debugging
1952
+ * [Fixed #2345](https://github.com/NativeScript/nativescript-cli/issues/2345): Option --device {DeviceName} not working for emulate/run/debug/deploy bug
1953
+ * [Fixed #2344](https://github.com/NativeScript/nativescript-cli/issues/2344): Emulate command not working for iOS
1954
+
1955
+ **Debug issues**
1956
+
1957
+ * [Fixed #2315](https://github.com/NativeScript/nativescript-cli/issues/2315): tns debug ios --watch fails on newly created app if there is already deployed app with the same app id
1958
+ * [Fixed #2292](https://github.com/NativeScript/nativescript-cli/issues/2292): "tns debug {platform} --watch" inconvenient behavior
1959
+
1960
+ **Console logging issues**
1961
+
1962
+ * [Fixed #2385](https://github.com/NativeScript/nativescript-cli/issues/2385): console line breaks in terminal are non existent Android bug
1963
+ * [Fixed #2266](https://github.com/NativeScript/nativescript-cli/issues/2266): CLI crashes/stops responding after ~80 console.logs
1964
+
1965
+ **Other issues**
1966
+ * [Fixed #1594](https://github.com/NativeScript/nativescript-cli/issues/1594): CLI does not respect shelljs errors
1967
+ * [Fixed #2395](https://github.com/NativeScript/nativescript-cli/issues/2395): Error occurs when --justlaunch option used
1968
+ * [Fixed #2379](https://github.com/NativeScript/nativescript-cli/issues/2379): Next release will be not backward compatbile with old proejcts.
1969
+ * [Fixed #2370](https://github.com/NativeScript/nativescript-cli/issues/2370): Error: ENOENT: no such file or directory, chmod 'C:\Users\NSBUIL~1\AppData\Local\Temp\nsbuilduser\KillSwitches\cli'
1970
+ * [Fixed #2240](https://github.com/NativeScript/nativescript-cli/issues/2240): Hooks inside app folder for template-hello-world-ng on tns create
1971
+ * [Fixed #2228](https://github.com/NativeScript/nativescript-cli/issues/2228): Homebrew as root is no longer supported
1972
+ * [Fixed #2227]( https://github.com/NativeScript/nativescript-cli/issues/2227): Remove use of lib/iOS folder for native plugins
1973
+ * [Fixed #282]( https://github.com/NativeScript/nativescript-cli/issues/282): "tns platform add android --path TNSApp --symlink" does not work on Windows
1974
+ * [Fixed #1802](https://github.com/NativeScript/nativescript-cli/issues/1802): semver copied to platforms/android even though it's a dev dependency
1975
+
1976
+ 2.4.2 (2016, December 8)
1977
+ ==
1978
+ ### Fixed
1979
+ * [Fixed #2332](https://github.com/NativeScript/nativescript-cli/pull/2332): Fixed email registration process
1980
+
1981
+ 2.4.1 (2016, December 4)
1982
+ ==
1983
+ ### Fixed
1984
+ * [Fixed #2200](https://github.com/NativeScript/nativescript-cli/pull/2200): TypeScript files don't show in {N} debugger.
1985
+ * [Fixed #2273](https://github.com/NativeScript/nativescript-cli/pull/2273): Livesync should continue to work after app crash
1986
+
1987
+ 2.4.0 (2016, November 16)
1988
+ ==
1989
+ ### New
1990
+ * [Implemented #2071](https://github.com/NativeScript/nativescript-cli/issues/2071): Add device alias command
1991
+ * [Implemented #1968](https://github.com/NativeScript/nativescript-cli/issues/1968): Add `tns devices` as synonym for `tns device`
1992
+ * [Implemented #2067](https://github.com/NativeScript/nativescript-cli/issues/2067): Build, run, and livesync commands should support the teamid option
1993
+ * [Implemented #2111](https://github.com/NativeScript/nativescript-cli/issues/2111): Prevent app folder updates when --bundle option used
1994
+ * [Implemented #2129](https://github.com/NativeScript/nativescript-cli/issues/2129): Show typescript file row:column in CLI log when possible
1995
+ * [Implemented #2128](https://github.com/NativeScript/nativescript-cli/issues/2128): Add option to subscribe to NativeScript email lists when installing CLI
1996
+ * [Implemented #2027](https://github.com/NativeScript/nativescript-cli/issues/2027): Create tns update command
1997
+ * [Implemented #2157](https://github.com/NativeScript/nativescript-cli/issues/2157): Add support for Node 7
1998
+ * [Implemented #2151](https://github.com/NativeScript/nativescript-cli/issues/2151): Add snapshot plugin to project package.json
1999
+ * [Implemented #2164](https://github.com/NativeScript/nativescript-cli/issues/2164): Deprecate support for Node 0.12
2000
+ * [Implemented #2149](https://github.com/NativeScript/nativescript-cli/issues/2149): Implement incremental prepare
2001
+
2002
+ ### Fixed
2003
+ * [Fixed #2061](https://github.com/NativeScript/nativescript-cli/issues/2061): "Tns debug ios --watch" increase node processes after every change
2004
+ * [Fixed #2081](https://github.com/NativeScript/nativescript-cli/issues/2081): List of all iOS devices produces an error
2005
+ * [Fixed #2081](https://github.com/NativeScript/nativescript-cli/issues/2081): Check for iOS simulator and get full iOS logs on Mac
2006
+ * [Fixed #2086](https://github.com/NativeScript/nativescript-cli/issues/2086): Stop calling npm install on each prepare of NG projects
2007
+ * [Fixed #2087](https://github.com/NativeScript/nativescript-cli/issues/2087): Do not stop process when EPEERINVALID error is raised
2008
+ * [Fixed #2088](https://github.com/NativeScript/nativescript-cli/issues/2088): Show helpful information when sync over WiFi error is detected
2009
+ * [Fixed #2093](https://github.com/NativeScript/nativescript-cli/issues/2093): Fix getting iOS simulator device logs
2010
+ * [Fixed #2094](https://github.com/NativeScript/nativescript-cli/issues/2094): "--framework-path" with no argument fails with "input.replace is not a function" message
2011
+ * [Fixed #2056](https://github.com/NativeScript/nativescript-cli/issues/2056): Please let `tns` continue if it encounters a "does not satisfy its siblings' peerDependencies requirements!
2012
+ * [Fixed #1980](https://github.com/NativeScript/nativescript-cli/issues/1980): Prepare does not work properly when plugin has only Android native implementaion
2013
+ * [Fixed #1974](https://github.com/NativeScript/nativescript-cli/issues/1974): The plugin remove command fails with ENOENT
2014
+ * [Fixed #2110](https://github.com/NativeScript/nativescript-cli/issues/2110): Prepare plugins without node_modules
2015
+ * [Fixed #2072](https://github.com/NativeScript/nativescript-cli/issues/2072): First-time livesync fails on device
2016
+ * [Fixed #2070](https://github.com/NativeScript/nativescript-cli/issues/2070): Tns debug Android --watch cannot be stopped with Ctrl + C command after a few changes in the code
2017
+ * [Fixed #2152](https://github.com/NativeScript/nativescript-cli/issues/2152): Copy node_modules to platform on prepare (fix Node6/npm 3.x bug)
2018
+ * [Fixed #2154](https://github.com/NativeScript/nativescript-cli/issues/2154): "tns device log" throws exception on real iOS devices
2019
+ * [Fixed #2168](https://github.com/NativeScript/nativescript-cli/issues/2168): CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory
2020
+ * [Fixed #2178](https://github.com/NativeScript/nativescript-cli/issues/2178): Running `tsc` after runing tests causes test execution to fail
2021
+ * [Fixed #1398](https://github.com/NativeScript/nativescript-cli/issues/1398): CLI( tns ) Only can deploy first time to real iPhone device
2022
+ * [Fixed #2155](https://github.com/NativeScript/nativescript-cli/issues/2155): CLI does not work with Node7
2023
+ * [Fixed #1989](https://github.com/NativeScript/nativescript-cli/issues/1989): TNS and dependencies vs devdependencies
2024
+
2025
+ 2.3.0 (2016, September 15)
2026
+ ==
2027
+
2028
+ ### Fixed
2029
+ * [Fixed #2034](https://github.com/NativeScript/nativescript-cli/issues/2034): Fixed: Cannot read property "targetNum" of undefined
2030
+ * [Fixed #2028](https://github.com/NativeScript/nativescript-cli/issues/2028):Fixed: Android Custom Activities and TNS incompatibility
2031
+ * [Fixed #2025](https://github.com/NativeScript/nativescript-cli/issues/2025):Fixed: Add support for Node.js 6.5
2032
+ * [Fixed #2022](https://github.com/NativeScript/nativescript-cli/issues/2022):Fixed: LiveEdit restarts typescript projects
2033
+ * [Fixed #1636](https://github.com/NativeScript/nativescript-cli/issues/1636):Fixed: The test android command fails to run tests
2034
+
2035
+ 2.2.1 (2016, August 15)
2036
+ ==
2037
+
2038
+ ### Fixed
2039
+ * [Fixed #1985](https://github.com/NativeScript/nativescript-cli/issues/1985): Fixed: Livesync + debug on Android not working when there are changes in tns-core-modules.
2040
+ * [Fixed #1993](https://github.com/NativeScript/nativescript-cli/issues/1993): Fixed: VisualStudio Code hangs when executing sync on iOS action.
2041
+ * [Fixed #1994](https://github.com/NativeScript/nativescript-cli/issues/1985): Fixed: Livesync + debug syncs wrong files on Android.
2042
+
2043
+ 2.2.0 (2016, August 10)
2044
+ ==
2045
+
2046
+ ### New
2047
+ * [Implemented #1959](https://github.com/NativeScript/nativescript-cli/issues/1959): XCode8/iOS10 support
2048
+ * [Implemented #1948](https://github.com/NativeScript/nativescript-cli/issues/1948): npm WARN deprecated minimatch@0.2.14: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
2049
+ * [Implemented #1944](https://github.com/NativeScript/nativescript-cli/issues/1944): Enhancement: tns plugin INSTALL alias
2050
+ * [Implemented #1565](https://github.com/NativeScript/nativescript-cli/issues/1565): Livesync debugging support
2051
+ * [Implemented #526](https://github.com/NativeScript/nativescript-cli/issues/526): Update plugin command
2052
+
2053
+ ### Fixed
2054
+ * [Fixed #1958](https://github.com/NativeScript/nativescript-cli/issues/1958): CSS is not automatically livesynced in angular apps.
2055
+ * [Fixed #1955](https://github.com/NativeScript/nativescript-cli/issues/1955): Livesync does not inform the user if no platforms are added but kills the process.
2056
+ * [Fixed #1955](https://github.com/NativeScript/nativescript-cli/issues/1955): Livesync does not inform the user if no platforms are added but kills the process.
2057
+ * [Fixed #1920](https://github.com/NativeScript/nativescript-cli/issues/1920): "tns debug ios" does not work.
2058
+ * [Fixed #1912](https://github.com/NativeScript/nativescript-cli/issues/1912): "tns device run <bundle> --device <device>" noes no work.
2059
+ * [Fixed #1909](https://github.com/NativeScript/nativescript-cli/issues/1909): "tns run android --emulator" deploy to device.
2060
+ * [Fixed #1904](https://github.com/NativeScript/nativescript-cli/issues/1904): ERROR Provide a valid path to the desired application bundle.(with Device and Simulator running).
2061
+ * [Fixed #1900](https://github.com/NativeScript/nativescript-cli/issues/1900): livesync EISDIR error when changing ".ts" file.
2062
+ * [Fixed #1872](https://github.com/NativeScript/nativescript-cli/issues/1872): "tns livesync android" not updating application consistently.
2063
+ * [Fixed #1508](https://github.com/NativeScript/nativescript-cli/issues/1508): Project with plugin variables does not build.
2064
+ * [Fixed #1354](https://github.com/NativeScript/nativescript-cli/issues/1354): Livesync both Android and iOS at the same time, only android updates.
2065
+
2066
+ 2.1.0 (2016, June 30)
2067
+ ==
2068
+
2069
+ ### New
2070
+ * [Implemented #1773](https://github.com/NativeScript/nativescript-cli/issues/1773): Show warning when livesync cannot reflect a change.
2071
+ * [Implemented #1733](https://github.com/NativeScript/nativescript-cli/issues/1733): [node.js 6.x support] Native module sources is not supported.
2072
+ * [Implemented #1731](https://github.com/NativeScript/nativescript-cli/issues/1731): Have the quick setup scripts create an AVD emulator.
2073
+ * [Implemented #1650](https://github.com/NativeScript/nativescript-cli/issues/1650): Implement a shorthand --tsc option of the create command.
2074
+ * [Implemented #1580](https://github.com/NativeScript/nativescript-cli/issues/1580): Add clean commands to tns.
2075
+ * [Implemented #1517](https://github.com/NativeScript/nativescript-cli/issues/1517): Allow for apps to disable page reload livesyncs.
2076
+
2077
+ ### Fixed
2078
+ * [Fixed #1883](https://github.com/NativeScript/nativescript-cli/issues/1883): Live sync recompiles the app every time in iOS when run first time.
2079
+ * [Fixed #1853](https://github.com/NativeScript/nativescript-cli/issues/1853): Flag when Android devices are out of storage.
2080
+ * [Fixed #1826](https://github.com/NativeScript/nativescript-cli/issues/1826): Replace Local Maven repository for Support Libraries with Android Support Repository.
2081
+ * [Fixed #1810](https://github.com/NativeScript/nativescript-cli/issues/1810): tns livesync android --emulator --watch fails when create new folder.
2082
+ * [Fixed #1790](https://github.com/NativeScript/nativescript-cli/issues/1790): tns publish ios fails with cocoapods.
2083
+ * [Fixed #1777](https://github.com/NativeScript/nativescript-cli/issues/1777): Invalid XML kills livesync.
2084
+ * [Fixed #1776](https://github.com/NativeScript/nativescript-cli/issues/1776): UnitTest app is packed within the published application which increases the size of the application.
2085
+ * [Fixed #1770](https://github.com/NativeScript/nativescript-cli/issues/1770): "tns livesync ios --watch" doesn't sync changes if pacakgeId and folder name does not match.
2086
+ * [Fixed #1752](https://github.com/NativeScript/nativescript-cli/issues/1752): Use spaces instead of tabs in package.json for consistency with npm.
2087
+ * [Fixed #1746](https://github.com/NativeScript/nativescript-cli/issues/1746): Remove node_modules after preparing plugins.
2088
+ * [Fixed #1739](https://github.com/NativeScript/nativescript-cli/issues/1739): NativeScript 2.0 warning needs to reference how to install updated cocoapods when xcode 7.3 supported version of pods is released.
2089
+ * [Fixed #1734](https://github.com/NativeScript/nativescript-cli/issues/1734): ios builds with 2.0.0: Processing node_modules failed. TypeError: Cannot read property 'split' of null.
2090
+ * [Fixed #1732](https://github.com/NativeScript/nativescript-cli/issues/1732): TNS 2.00 & Macintosh without Java/Android configured.
2091
+ * [Fixed #1727](https://github.com/NativeScript/nativescript-cli/issues/1727): [Angular] Improve livesync performance for iOS.
2092
+ * [Fixed #1725](https://github.com/NativeScript/nativescript-cli/issues/1725): Ctrl + C shortcut does not stop the livesync ios --watch command.
2093
+ * [Fixed #1652](https://github.com/NativeScript/nativescript-cli/issues/1652): Analytics for OS X version.
2094
+ * [Fixed #1620](https://github.com/NativeScript/nativescript-cli/issues/1620): Unable to debug on iOS using the --device option.
2095
+ * [Fixed #1571](https://github.com/NativeScript/nativescript-cli/issues/1571): Livesync ios is not working when dependency has executable.
2096
+ * [Fixed #1481](https://github.com/NativeScript/nativescript-cli/issues/1481): LiveSync doesn't show any changes to a modal page.
2097
+ * [Fixed #1376](https://github.com/NativeScript/nativescript-cli/issues/1376): Consider removing --debug-brk parameter.
2098
+ * [Fixed #1296](https://github.com/NativeScript/nativescript-cli/issues/1296): tns build breaks permanately if you have drawable-invalid name.
2099
+ * [Fixed #485](https://github.com/NativeScript/nativescript-cli/issues/485): Platform specific prepare breaks source map paths.
2100
+
2101
+ 2.0.1 (2016, May 18)
2102
+ ==
2103
+ ### Fixed
2104
+ * [Fixed #1746](https://github.com/NativeScript/nativescript-cli/issues/1746): Remove node_modules after preparing plugins.
2105
+ * [Fixed #1741](https://github.com/NativeScript/nativescript-cli/issues/1741): Cocoapods problem in tns doctor.
2106
+
2107
+ 2.0.0 (2016, April 28)
2108
+ ==
2109
+
2110
+ ### New
2111
+ * [Implemented #1262](https://github.com/NativeScript/nativescript-cli/issues/1262): LiveSync with console.log support for iOS simulators.
2112
+ * [Implemented #1431](https://github.com/NativeScript/nativescript-cli/issues/1431): `tns doctor` should warn about new versions of NativeScript components.
2113
+ * [Implemented #1595](https://github.com/NativeScript/nativescript-cli/issues/1595): Provide a shorthand for starting Angular 2 apps (`--ng`).
2114
+ * [Implemented #1665](https://github.com/NativeScript/nativescript-cli/issues/1665): Add command for searching nativescript plugins.
2115
+
2116
+ ### Fixed
2117
+ * [Fixed #1203](https://github.com/NativeScript/nativescript-cli/issues/1203): Forbid creating projects with names starting with number.
2118
+ * [Fixed #1419](https://github.com/NativeScript/nativescript-cli/issues/1419): Cannot find module `colors` during uninstall.
2119
+ * [Fixed #1504](https://github.com/NativeScript/nativescript-cli/issues/1504): Avoid NPM warnings on the create command .
2120
+ * [Fixed #1526](https://github.com/NativeScript/nativescript-cli/issues/1526): Executing `tns platform add <platform>` prints command help when platform is already added.
2121
+ * [Fixed #1532](https://github.com/NativeScript/nativescript-cli/issues/1532): `tns livesync ios --watch` doesn't sync js changes if pacakgeId and folder name does not match.
2122
+ * [Fixed #1611](https://github.com/NativeScript/nativescript-cli/issues/1611): Unable to build a project with CocoaPods version: `1.0.0.beta.x`.
2123
+ * [Fixed #1639](https://github.com/NativeScript/nativescript-cli/issues/1639): Fix compatibility with XCode 7.3
2124
+ * [Fixed #1674](https://github.com/NativeScript/nativescript-cli/issues/1674): Can't build ios project is cocoapods is not installed.
2125
+ * [Fixed #1689](https://github.com/NativeScript/nativescript-cli/issues/1689): Executing `tns run android` fails to deploy app on new Android emulator.
2126
+
2127
+ 1.7.1 (2016, March 30)
2128
+ ==
2129
+
2130
+ ### New
2131
+ * [Implemented #1634](https://github.com/NativeScript/nativescript-cli/issues/1634): Replace plugin variables in all .xml files of android's plugin code.
2132
+
2133
+ ### Fixed
2134
+ * [Fixed #1610](https://github.com/NativeScript/nativescript-cli/issues/1610): `tns plugin add <plugin>` has issues with postinstall scripts.
2135
+ * [Fixed #1610](https://github.com/NativeScript/nativescript-cli/issues/1612): Unable to execute unit tests on iOS Simulator in some cases.
2136
+ * [Fixed #1619](https://github.com/NativeScript/nativescript-cli/issues/1619): Wrong error message on installation (or `tns doctor` command).
2137
+ * [Fixed #1625](https://github.com/NativeScript/nativescript-cli/issues/1625): Double navigation when showing unit test results.
2138
+
2139
+ 1.7.0 (2016, March 16)
2140
+ ==
2141
+
2142
+ ### Breaking
2143
+ * Minimum required Android Build-tools version is set to 23.0.0 due to some changes in Android SDK. CLI will not allow building your application for Android in case you do not have at least this version installed.
2144
+ * Minimum required Windows version is now Windows 7 SP1.
2145
+
2146
+ ### New
2147
+ * [Implemented #1172](https://github.com/NativeScript/nativescript-cli/issues/1172): Add `tns publish ios` command.
2148
+ * [Implemented #1514](https://github.com/NativeScript/nativescript-cli/issues/1514): Use custom native project templates.
2149
+ * [Implemented #1563](https://github.com/NativeScript/nativescript-cli/issues/1563): Install runtime by npm tagname.
2150
+
2151
+ ### Fixed
2152
+ * [Fixed #1081](https://github.com/NativeScript/nativescript-cli/issues/1081): CLI LiveSync command conflicts with Android Studio.
2153
+ * [Fixed #1416](https://github.com/NativeScript/nativescript-cli/issues/1416): Livesync does not work when `/data/local/tmp/<app-identifier>` file exists on Android device.
2154
+ * [Fixed #1541](https://github.com/NativeScript/nativescript-cli/issues/1541): Plugin remove fails if plugin version is not available in npm.
2155
+ * [Fixed #1576](https://github.com/NativeScript/nativescript-cli/issues/1576): `tns run android` just starts emulator but does not deploy app on it when no devices are attached.
2156
+
2157
+ 1.6.2 (2016, March 2)
2158
+ ==
2159
+
2160
+ ### Fixed
2161
+ * [Fixed #1313](https://github.com/NativeScript/nativescript-cli/issues/1313): `tns livesync <platform> --watch` is not working for changed platform specific files.
2162
+ * [Fixed #1513](https://github.com/NativeScript/nativescript-cli/issues/1513): `tns test <platform>` does not work in case the application is not installed on the device.
2163
+ * [Fixed #1555](https://github.com/NativeScript/nativescript-cli/issues/1555): CLI installs beta versions of runtimes in case they are published in npm.
2164
+
2165
+ 1.6.1 (2016, February 19)
2166
+ ==
2167
+
2168
+ ### Fixed
2169
+ * [Fixed #1499](https://github.com/NativeScript/nativescript-cli/issues/1499): `livesync --watch` fails for TypeScript projects with `sourceMaps` enabled.
2170
+ * [Fixed #1503](https://github.com/NativeScript/nativescript-cli/issues/1503): Livesync fails to install app on multiple devices.
2171
+
2172
+ 1.6.0 (2016, February 17)
2173
+ ==
2174
+
2175
+ ### Breaking
2176
+ * CLI requires full `AndroidManifest.xml` in `app/App_Resources/Android`. Any project which already has such manifest will be upgraded on prepare command.
2177
+ The existing `AndroidManifest.xml` will be renamed and default manifest will be extracted. You will have to merge the files manually.
2178
+ * Remove support for `tns library add` command.
2179
+ * Remove support for `ant` builds.
2180
+
2181
+ ### New
2182
+ * [Implemented #374](https://github.com/NativeScript/nativescript-cli/issues/374): Add support for different templates by using `--template` option for `tns create` command.
2183
+ * [Implemented #625](https://github.com/NativeScript/nativescript-cli/issues/625): A script to set up Mac machine for developing with NativeScript.
2184
+ * [Implemented #921](https://github.com/NativeScript/nativescript-cli/issues/921): Initial LiveSync is extremly slow if the project has thousands of files.
2185
+ * [Implemented #952](https://github.com/NativeScript/nativescript-cli/issues/952): Add `--sdk` option to specify SDK version of iOS Simulator.
2186
+ * [Implemented #1026](https://github.com/NativeScript/nativescript-cli/issues/1026): Out of the box support for application id in plugins.
2187
+ * [Implemented #1089](https://github.com/NativeScript/nativescript-cli/issues/1089): Allow full `Info.plist` and `AndroidManifest.xml` files to be placed in `app/App_Resources/<platform>`.
2188
+ * [Implemented #1239](https://github.com/NativeScript/nativescript-cli/issues/1239): Remove support for `library add` command.
2189
+ * [Implemented #1243](https://github.com/NativeScript/nativescript-cli/issues/1243): Fast livesync for images in `app` directory.
2190
+ * [Implemented #1294](https://github.com/NativeScript/nativescript-cli/issues/1294): `tns doctor` should check CocoaPods/Ruby version.
2191
+ * [Implemented #1302](https://github.com/NativeScript/nativescript-cli/issues/1302): Add command for generating html help pages - `dev-generate-help`.
2192
+ * [Implemented #1329](https://github.com/NativeScript/nativescript-cli/issues/1329): `tns device` to show status of connected devices.
2193
+ * [Implemented #1338](https://github.com/NativeScript/nativescript-cli/issues/1338): Remove the requirement for external watchers.
2194
+ * [Implemented #1363](https://github.com/NativeScript/nativescript-cli/issues/1363): Support debug commands with `--no-client` argument.
2195
+ * [Implemented #1375](https://github.com/NativeScript/nativescript-cli/issues/1375): Improve the output of `tns debug android --get-port`.
2196
+ * [Implemented #1382](https://github.com/NativeScript/nativescript-cli/issues/1382): Show a progress indicator when downloading platforms.
2197
+ * [Implemented #1412](https://github.com/NativeScript/nativescript-cli/issues/1412): Store settings in the Roaming Windows profile.
2198
+ * [Implemented #1420](https://github.com/NativeScript/nativescript-cli/issues/1420): Log how often CLI users "opt out" of CLI usage tracking.
2199
+ * [Implemented #1440](https://github.com/NativeScript/nativescript-cli/issues/1440): Show loading indicator when an exception is tracked.
2200
+ * [Implemented #1486](https://github.com/NativeScript/nativescript-cli/issues/1486): Implement Android debugging with unix sockets redirection.
2201
+
2202
+ ### Fixed
2203
+ * [Fixed #575](https://github.com/NativeScript/nativescript-cli/issues/575): Plugin remove does not work with `--path` option.
2204
+ * [Fixed #1027](https://github.com/NativeScript/nativescript-cli/issues/1027): Prepare android/ios command prepares both platforms when added.
2205
+ * [Fixed #1236](https://github.com/NativeScript/nativescript-cli/issues/1236): The command `tns device log` prints only the log of the app on Android.
2206
+ * [Fixed #1237](https://github.com/NativeScript/nativescript-cli/issues/1237): `tns livesync --watch` fails when ios device is not attached and simulator is running.
2207
+ * [Fixed #1292](https://github.com/NativeScript/nativescript-cli/issues/1292): Livesync fails when using typescript in VisualStudio.
2208
+ * [Fixed #1307](https://github.com/NativeScript/nativescript-cli/issues/1307): Infinite loop when trying to validate xml.
2209
+ * [Fixed #1315](https://github.com/NativeScript/nativescript-cli/issues/1315): LiveSync does not respect deleted files on some android devices.
2210
+ * [Fixed #1328](https://github.com/NativeScript/nativescript-cli/issues/1328): Terminal hangs if tns device is run and there is an untrusted iPhone connected.
2211
+ * [Fixed #1332](https://github.com/NativeScript/nativescript-cli/issues/1332): Application entry point file not found... when using livesync (android).
2212
+ * [Fixed #1337](https://github.com/NativeScript/nativescript-cli/issues/1337): Syntax error in a babel source crashes livesync watch.
2213
+ * [Fixed #1339](https://github.com/NativeScript/nativescript-cli/issues/1339): LiveSync watch breaks when deleting a folder and then adding a new file|folder on OS X.
2214
+ * [Fixed #1360](https://github.com/NativeScript/nativescript-cli/issues/1360): Missing iOS console logs in some cases.
2215
+ * [Fixed #1386](https://github.com/NativeScript/nativescript-cli/issues/1386): Unit tests crash on Android emulator.
2216
+ * [Fixed #1401](https://github.com/NativeScript/nativescript-cli/issues/1401): Unit testing: `tns test android` command hangs.
2217
+ * [Fixed #1403](https://github.com/NativeScript/nativescript-cli/issues/1403): `tns deploy ios --release` command prints incorrect message.
2218
+ * [Fixed #1428](https://github.com/NativeScript/nativescript-cli/issues/1428): XCode v7.2+ Fails with Cocoapods on emulator.
2219
+ * [Fixed #1437](https://github.com/NativeScript/nativescript-cli/issues/1437): `tns debug android --emulator` does not stop at the app initial breakpoint.
2220
+ * [Fixed #1455](https://github.com/NativeScript/nativescript-cli/issues/1455): CLI not supporting a project path having a spaces.
2221
+
2222
+ 1.5.2 (2015, December 12)
2223
+ ==
2224
+ ### New
2225
+ * [Implemented #1247](https://github.com/NativeScript/nativescript-cli/issues/1247): Do not kill adb server if possible.
2226
+
2227
+ ### Fixed
2228
+ * [Fixed #956](https://github.com/NativeScript/nativescript-cli/issues/956): Better error reporting for deploy on device.
2229
+ * [Fixed #1210](https://github.com/NativeScript/nativescript-cli/issues/1210): LiveSync does not handle correctly removed files on iOS simulator.
2230
+ * [Fixes #1308](https://github.com/NativeScript/nativescript-cli/issues/1308): Livesync ends up with an endless loop for projects that have before-prepare hook that changes some project file.
2231
+
2232
+ 1.5.1 (2015, December 03)
2233
+ ==
2234
+ ### New
2235
+ * [Implemented #452](https://github.com/NativeScript/nativescript-cli/issues/452): Build should report malformed XML.
2236
+ * [Implemented #1263](https://github.com/NativeScript/nativescript-cli/issues/1263): Add timestamps to LiveSync messages.
2237
+
2238
+ ### Fixed
2239
+ * [Fixed #1234](https://github.com/NativeScript/nativescript-cli/issues/1234): LiveSync does not work for iOS platform specific .xml/.css files on iOS Simulator.
2240
+ * [Fixed #1242](https://github.com/NativeScript/nativescript-cli/issues/1242): `ANDROID_HOME environment variable is not set correctly` error is thrown when `tns run ios --log trace` command is executed.
2241
+ * [Fixed #1245](https://github.com/NativeScript/nativescript-cli/issues/1245): `TypeError: Cannot read property 'match' of null` error is thrown on various commands.
2242
+ * [Fixed #1246](https://github.com/NativeScript/nativescript-cli/issues/1246): LiveSync on android device is throwing ENAMTOOLONG error on Windows.
2243
+ * [Fixed #1253](https://github.com/NativeScript/nativescript-cli/issues/1253): iOS debugger does not work with iOS Simulator with Xcode7+.
2244
+ * [Fixed #1268](https://github.com/NativeScript/nativescript-cli/issues/1268): Hook failures treated as bad user input.
2245
+
2246
+ 1.5.0 (2015, November 24)
2247
+ ==
2248
+
2249
+ ### New
2250
+ * [Implemented #493](https://github.com/NativeScript/nativescript-cli/issues/493): Enable transpilers support in NativeScript projects.
2251
+ * [Implemented #594](https://github.com/NativeScript/nativescript-cli/issues/594): Implement a hard dependency on the node.js version and exit if not satisfied.
2252
+ * [Implemented #684](https://github.com/NativeScript/nativescript-cli/issues/684): Enable commands hooks.
2253
+ * [Implemented #955](https://github.com/NativeScript/nativescript-cli/issues/955): Support for Xcode7 simulator.
2254
+ * [Implemented #1007](https://github.com/NativeScript/nativescript-cli/issues/1007): Smarter and faster LiveSync.
2255
+ * [Implemented #1048](https://github.com/NativeScript/nativescript-cli/issues/1048): Support Gradle files from plugins, merge android resource files using aapt and respect AndroidManifest.xml from App_Resources.
2256
+ * [Implemented #1113](https://github.com/NativeScript/nativescript-cli/issues/1113): Let users create and execute unit tests in their projects.
2257
+ * [Implemented #1117](https://github.com/NativeScript/nativescript-cli/issues/1117): Support for TypeScript-based NativeScript projects.
2258
+ * [Implemented #1130](https://github.com/NativeScript/nativescript-cli/issues/1130): Show application output from livesync command for iOS devices and android devices and emulators.
2259
+ * [Implemented #1164](https://github.com/NativeScript/nativescript-cli/issues/1164): Use android tools from ANDROID_HOME.
2260
+ * [Implemented #1229](https://github.com/NativeScript/nativescript-cli/issues/1229): Support for Node 5.1.0.
2261
+
2262
+ ### Fixed
2263
+ * [Fixed #727](https://github.com/NativeScript/nativescript-cli/issues/727): Double logging with tns run ios.
2264
+ * [Fixed #1044](https://github.com/NativeScript/nativescript-cli/issues/1044): iOS debug break on Simulator causes app crash when the debugger is paused on the first line for a long time.
2265
+ * [Fixed #1086](https://github.com/NativeScript/nativescript-cli/issues/1086): --key-store-path option to look for the keystore file path relative to the app root.
2266
+ * [Fixed #1106](https://github.com/NativeScript/nativescript-cli/issues/1106): Livesync double restarts for TS projects.
2267
+ * [Fixed #1110](https://github.com/NativeScript/nativescript-cli/issues/1110): `tns doctor` command should detect invalid java version.
2268
+ * [Fixed #1167](https://github.com/NativeScript/nativescript-cli/issues/1167): `tns run`, `tns emulate` and `tns deploy` commands do not check if device is available before build.
2269
+ * [Fixed #1177](https://github.com/NativeScript/nativescript-cli/issues/1177): `tns run` command fails when multiple devices with same platform are attached.
2270
+ * [Fixed #1185](https://github.com/NativeScript/nativescript-cli/issues/1185): `tns device` command fails when VS Emulator is running.
2271
+ * [Fixed #1204](https://github.com/NativeScript/nativescript-cli/issues/1204): Incorrect prepare when using npm 3.x.
2272
+
2273
+ 1.4.3 (2015, October 21)
2274
+ ==
2275
+
2276
+ ### New
2277
+ * [Implemented #883](https://github.com/NativeScript/nativescript-cli/issues/883): Support xcconfig file from plugin.
2278
+ * [Implemented #958](https://github.com/NativeScript/nativescript-cli/issues/958): Support for Node 4.2.1+.
2279
+ * [Implemented #1065](https://github.com/NativeScript/nativescript-cli/issues/1065): Support sandbox-pod.
2280
+
2281
+ ### Fixed
2282
+ * [Fixed #1031](https://github.com/NativeScript/nativescript-cli/issues/1031): Command emulate android after LiveSync starts the last synced app on the emulator.
2283
+ * [Fixed #1044](https://github.com/NativeScript/nativescript-cli/issues/1044): iOS debug break on Simulator causes app crash when the debugger is paused on the first line for a long time.
2284
+ * [Fixed #1054](https://github.com/NativeScript/nativescript-cli/issues/1054): ENOENT error is thrown when `tns platform add ios` command is executed.
2285
+ * [Fixed #1066](https://github.com/NativeScript/nativescript-cli/issues/1066): Merge Info.plist fails second build.
2286
+ * [Fixed #1080](https://github.com/NativeScript/nativescript-cli/issues/1080): Using --symlink for android runtime is modifying the original one.
2287
+
2288
+ 1.4.2 (2015, October 15)
2289
+ ==
2290
+
2291
+ ### Fixed
2292
+ * [Fixed #1041](https://github.com/NativeScript/nativescript-cli/issues/1041): Unable to run the application when project root directory is renamed.
2293
+
2294
+ 1.4.0 (2015, October 07)
2295
+ ==
2296
+
2297
+ ### Breaking
2298
+ * Application cannot be built with android-21 SDK. You need at least android-22 SDK in order to build or run your application on connected device or in emulator.
2299
+
2300
+ ### New
2301
+ * [Implemented #685](https://github.com/NativeScript/nativescript-cli/issues/685): Support static libraries in plugins for iOS.
2302
+ * [Implemented #923](https://github.com/NativeScript/nativescript-cli/issues/923): Ability to specify android debug ui on Windows and Linux.
2303
+ * [Implemented #927](https://github.com/NativeScript/nativescript-cli/issues/927): Support compileSdk option for android build.
2304
+ * [Implemented #935](https://github.com/NativeScript/nativescript-cli/issues/935): Android 6.0 support.
2305
+ * [Implemented #949](https://github.com/NativeScript/nativescript-cli/issues/949): `tns doctor` command checks if CocoaPods are not installed or old CocoaPods version is used.
2306
+
2307
+ ### Fixed
2308
+ * [Fixed #393](https://github.com/NativeScript/nativescript-cli/issues/393): Unable to build when app contains .gz file.
2309
+ * [Fixed #748](https://github.com/NativeScript/nativescript-cli/issues/748): Debug --stop option does not detach the debug tools.
2310
+ * [Fixed #936](https://github.com/NativeScript/nativescript-cli/issues/936): javac version is not getting properly extracted in case of open jdk systems.
2311
+ * [Fixed #941](https://github.com/NativeScript/nativescript-cli/issues/941): `tns doctor` command reports Ant is not installed.
2312
+ * [Fixed #942](https://github.com/NativeScript/nativescript-cli/issues/942): Updating some files in App_Resources kills livesync.
2313
+ * [Fixed #943](https://github.com/NativeScript/nativescript-cli/issues/943): `tns run android` or `tns debug android` after `tns livesync android` starts the last synced app on the android device with api level 21 or greater.
2314
+ * [Fixed #944](https://github.com/NativeScript/nativescript-cli/issues/944): Using CocosPods does not update the app deployment target to iOS 8.
2315
+ * [Fixed #947](https://github.com/NativeScript/nativescript-cli/issues/947): Creash for missing module at runtime after upgrade a project from 1.2.0 version to 1.3.0 version.
2316
+ * [Fixed #961](https://github.com/NativeScript/nativescript-cli/issues/961): `tns build` command crashes when NativeScript CLI is added as dev dependency to project.
2317
+ * [Fixed #977](https://github.com/NativeScript/nativescript-cli/issues/977): `tns livesync <Platform> --watch` installs the application on the device on every change.
2318
+ * [Fixed #989](https://github.com/NativeScript/nativescript-cli/issues/989): `tns doctor` command is failing when installed Gradle version contains more than 2 numbers.
2319
+ * [Fixed #1018](https://github.com/NativeScript/nativescript-cli/issues/1018): ProjectName is incorrect in settings.gradle when projectDir name is different from projectId.
2320
+ * [Fixed #1019](https://github.com/NativeScript/nativescript-cli/issues/1019): Check if shasum is correct for all cached packages.
2321
+
2322
+ 1.3.0 (2015, September 16)
2323
+ ==
2324
+
2325
+ ### Breaking
2326
+
2327
+ `library add` command is deprecated and will be removed completely in one of our next releases (currently scheduled for 1.5).
2328
+ You cannot create NativeScript plugins with Android native code using Eclipse projects. You need to import your Eclipse project into Android Studio, convert it to Gradle build and consume the produced AAR file.
2329
+ You cannot use Apache Ant to create new projects for Android but you can continue build your existing Ant-based projects. Starting with NativeScript 1.3, Android builds require Gradle. Run `tns doctor` on the command line to learn more.
2330
+ Building NativeScript projects for Android requires Android SDK 22, Android SDK Build-tools 22, Android Support Repository and ANDROID_HOME environment variable set. Run `android` to configure Android SDK.
2331
+
2332
+ ### New
2333
+ * [Implemented #390](https://github.com/NativeScript/nativescript-cli/issues/390): Support tns_modules from npm.
2334
+ * [Implemented #686](https://github.com/NativeScript/nativescript-cli/issues/686): Support building of XCode workspaces.
2335
+ * [Implemented #687](https://github.com/NativeScript/nativescript-cli/issues/687): Android build with Gradle.
2336
+ * [Implemented #729](https://github.com/NativeScript/nativescript-cli/issues/729): CocoaPods support from plugins.
2337
+ * [Implemented #785](https://github.com/NativeScript/nativescript-cli/issues/785): Add platform on each platform related command.
2338
+ * [Implemented #875](https://github.com/NativeScript/nativescript-cli/issues/875): Init command configure tns-core-modules version.
2339
+
2340
+ ### Fixed
2341
+ * [Fixed #662](https://github.com/NativeScript/nativescript-cli/issues/662): Failed `tns platform add android` command leaves the project in inconsistent state.
2342
+ * [Fixed #730](https://github.com/NativeScript/nativescript-cli/issues/730): `tns livesync android` throws stdout maxBuffer exceeded.
2343
+ * [Fixed #772](https://github.com/NativeScript/nativescript-cli/issues/772): `tns platform update ios` command does not update metadata generator.
2344
+ * [Fixed #793](https://github.com/NativeScript/nativescript-cli/issues/793): The NativeScript CLI writes errors on stdout.
2345
+ * [Fixed #797](https://github.com/NativeScript/nativescript-cli/issues/797): Plugin add does not merge plugins's Info.plist file.
2346
+ * [Fixed #811](https://github.com/NativeScript/nativescript-cli/issues/811): `tns livesync <Platform> --watch` reports an error when platform specific file is changed.
2347
+ * [Fixed #826](https://github.com/NativeScript/nativescript-cli/issues/826): Failed `tns prepare <Platform>` command leaves the project in inconsistent state.
2348
+ * [Fixed #829](https://github.com/NativeScript/nativescript-cli/issues/829): Fail to build the project when `nativescript-telerik-ui` plugin is added before the platform.
2349
+ * [Fixed #866](https://github.com/NativeScript/nativescript-cli/issues/866): The NativeScript CLI is not able to detect java on Ubuntu.
2350
+ * [Fixed #896](https://github.com/NativeScript/nativescript-cli/issues/896): `tns run <Platform>` after `tns livesync <Platform>` starts the last synced app on the device.
2351
+
2352
+ 1.2.4 (2015, August 24)
2353
+ ==
2354
+
2355
+ ### Fixed
2356
+
2357
+ * [Fixed #806](https://github.com/NativeScript/nativescript-cli/issues/806): `tns library add android` command does not execute android project update if target 17 is not installed.
2358
+ * [Fixed #807](https://github.com/NativeScript/nativescript-cli/issues/807): Android native libs are not respected correctly if the plugin is added as depedency to another plugin.
2359
+
2360
+ 1.2.3 (2015, August 18)
2361
+ ==
2362
+
2363
+ ### Fixed
2364
+
2365
+ * [Fixed #776](https://github.com/NativeScript/nativescript-cli/issues/776): `tns livesync ios --emulator --watch` doesn't sync changes.
2366
+ * [Fixed #777](https://github.com/NativeScript/nativescript-cli/issues/777): `tns library add ios` does not build correct relative paths to referenced frameworks for mdgenerator.
2367
+ * [Fixed #779](https://github.com/NativeScript/nativescript-cli/issues/779): Command failed due to space in library reference path.
2368
+
2369
+ 1.2.2 (2015, August 11)
2370
+ ==
2371
+
2372
+ ### New
2373
+ * [Implemented #470](https://github.com/NativeScript/nativescript-cli/issues/470): Add `--timeout` option to `tns debug`.
2374
+ * [Implemented #682](https://github.com/NativeScript/nativescript-cli/issues/682): Set `--debug-brk` as the default option of `tns debug`.
2375
+ * [Implemented #706](https://github.com/NativeScript/nativescript-cli/issues/706): LiveSync to iOS Simulator.
2376
+
2377
+ ### Fixed
2378
+
2379
+ * [Fixed #470](https://github.com/NativeScript/nativescript-cli/issues/470): Command failed due to space in file path.
2380
+ * [Fixed #632](https://github.com/NativeScript/nativescript-cli/issues/632): Android debugger does not work on some OS X systems.
2381
+ * [Fixed #652](https://github.com/NativeScript/nativescript-cli/issues/652): `tns debug ios` does not load inspector from the added iOS runtime.
2382
+ * [Fixed #663](https://github.com/NativeScript/nativescript-cli/issues/663): Verify that Java is at least 1.7.
2383
+ * [Fixed #671](https://github.com/NativeScript/nativescript-cli/issues/671): `tns debug ios` doesn't work for projects created with framework versions earlier than 1.2.0.
2384
+ * [Fixed #679](https://github.com/NativeScript/nativescript-cli/issues/679): `tns library add ios` adds the framework with its full path in the Xcode project.
2385
+ * [Fixed #695](https://github.com/NativeScript/nativescript-cli/issues/695): Exceptions tracking is not correctly set in the user settings.
2386
+ * [Fixed #699](https://github.com/NativeScript/nativescript-cli/issues/699): Unable to update Android platform when npm cache is in an inconsistent state.
2387
+ * [Fixed #722](https://github.com/NativeScript/nativescript-cli/issues/722): `tns debug` builds and installs the app twice.
2388
+ * [Fixed #742](https://github.com/NativeScript/nativescript-cli/issues/742): `tns livesync android` doesn't work on some Android devices.
2389
+ * [Fixed #747](https://github.com/NativeScript/nativescript-cli/issues/747): New files are not respected by `tns livesync`.
2390
+
2391
+ 1.2.1 (2015, July 27)
2392
+ ==
2393
+
2394
+ ### Fixed
2395
+
2396
+ * [Fixed #690](https://github.com/NativeScript/nativescript-cli/issues/690): The `$ tns debug ios --debug-brk` command does not work.
2397
+
2398
+ 1.2.0 (2015, July 24)
2399
+ ==
2400
+
2401
+ ### New
2402
+
2403
+ * [Implemented #621](https://github.com/NativeScript/nativescript-cli/issues/621): Added the `$ tns error-reporting` command. By default, anonymous error reporting is enabled.
2404
+ * [Implemented #620](https://github.com/NativeScript/nativescript-cli/issues/620): Renamed the `$ tns feature-usage-tracking` command to `$ tns usage-reporting`. By default, anonymous usage reporting is enabled.
2405
+ * [Implemented #523](https://github.com/NativeScript/nativescript-cli/issues/523): Added the `$ tns livesync <Platform>` command. You can use it to quickly synchronize changes to connected devices without re-building and re-deploying your apps.
2406
+ * [Implemented #510](https://github.com/NativeScript/nativescript-cli/issues/510): Improvements and updates to the `$ tns plugin` sets of commands.
2407
+ * You can create and work with custom NativeScript plugins which contain Android native libraries.
2408
+ * You can create and work with custom NativeScript plugins which contain iOS dynamic native libraries.
2409
+ * The `$ tns plugin remove` command removes the Android native libraries carried by the plugin.
2410
+ * [Implemented #480](https://github.com/NativeScript/nativescript-cli/issues/480): Added the `$ tns doctor` command. You can use it to quickly check for any configuration issues which might prevent the NativeScript CLI from working properly.
2411
+
2412
+ ### Fixed
2413
+
2414
+ * [Fixed #658](https://github.com/NativeScript/nativescript-cli/issues/658): The `$ tns platform remove` command does not remove framework data from `package.json` for the project.
2415
+ * [Fixed #644](https://github.com/NativeScript/nativescript-cli/issues/644): You cannot build your app for Android, if it contains a custom `styles.xml`.
2416
+ * [Fixed #632](https://github.com/NativeScript/nativescript-cli/issues/632): On OS X systems with custom Chrome builds, you cannot debug Android apps. To be able to debug Android apps, you need to set the name of the custom Chrome build in the `ANDROID_DEBUG_UI_MAC` setting in `config.json`.
2417
+ * [Fixed #629](https://github.com/NativeScript/nativescript-cli/issues/629): The `$ tns prepare` command does not populate the platform-specific directories correctly, if your project contains both an npm module, installed using `$ npm install`, and a NativeScript plugin, installed using `$ tns plugin add`.
2418
+ * [Fixed #574](https://github.com/NativeScript/nativescript-cli/issues/574): The `$ tns prepare ios` command does not preserve file name casing when populating the platform-specific directories.
2419
+ * [Fixed #538](https://github.com/NativeScript/nativescript-cli/issues/538): The NativeScript CLI interprets files whose names contain `ios` or `android` as platform-specific files and renames them, even if they are not platform-specific.
2420
+ * [Fixed #281](https://github.com/NativeScript/nativescript-cli/issues/281): The `$ tns platform remove` command does not print any status message when the operation is successful.
2421
+ * [Fixed #271](https://github.com/NativeScript/nativescript-cli/issues/271): The `$ tns create` command does not validate the path provided with the `--copy-from` option.
2422
+ * [Fixed #139](https://github.com/NativeScript/nativescript-cli/issues/139): The `$ tns prepare` command does not remove files from the platform-specific directories correctly.
2423
+
2424
+ 1.1.2 (2015, July 2)
2425
+ ==
2426
+
2427
+ ### New
2428
+
2429
+ * [Implemented #600](https://github.com/NativeScript/nativescript-cli/issues/600): Added the `$ tns init` command. You can use it to initialize a NativeScript project for development. The command recreates or updates the `package.json` file of the project. You can then run `$ tns install` to install the platforms and dependencies described in the `package.json` file.
2430
+ * [Implemented #587](https://github.com/NativeScript/nativescript-cli/issues/587): Added the `$ tns install` command. You can use it to quickly install all platforms and dependencies described in a `package.json` file.
2431
+
2432
+ ### Fixed
2433
+
2434
+ * [Fixed #606](https://github.com/NativeScript/nativescript-cli/issues/606): The NativeScript CLI lets you run `<Platform>`-based commands on operating systems which do not support development for this platform. For example, you can run `$ tns build ios` on a Windows system.
2435
+ * [Fixed #601](https://github.com/NativeScript/nativescript-cli/issues/601): The NativeScript CLI does not treat the dependencies of devDependencies as devDependencies.
2436
+ * [Fixed #599](https://github.com/NativeScript/nativescript-cli/issues/599): The NativeScript CLI always creates a `tmp` directory in the current directory when you run any command and modifies the `package.json` file for the project.
2437
+ * [Fixed #584](https://github.com/NativeScript/nativescript-cli/issues/584): The NativeScript CLI references the files in the project with their absolute paths instead of their relative paths. This might cause the project to stop working when transfered to another location and might cause issues with your application packages.
2438
+ * [Fixed #578](https://github.com/NativeScript/nativescript-cli/issues/578): Platform-specific files in NativeScript plugins are not processed correctly. The NativeScript CLI copies them to the correct platform-specific directory but does not rename them correctly.
2439
+ * [Fixed #520](https://github.com/NativeScript/nativescript-cli/issues/520): iOS resources from the `App_Resources` folder are not included in the native Xcode project and are not accessible in the application package.
2440
+
2441
+ 1.1.1 (2015, June 17)
2442
+ ==
2443
+
2444
+ ### New
2445
+
2446
+ * [Implemented #551](https://github.com/NativeScript/nativescript-cli/issues/551): You can now develop for Android 5.1.1 (API Level 22). If you have this SDK installed on your system, the CLI will set it as the default target SDK when you run `$ tns platform add android`
2447
+ * [Implemented #552](https://github.com/NativeScript/nativescript-cli/issues/552): You can now set the target Android SDK for your project by specifying the `--sdk ` option for `$ tns platform add android` operations.
2448
+
2449
+ ### Fixed
2450
+
2451
+ * [Fixed #555](https://github.com/NativeScript/nativescript-cli/issues/555): In some cases, the CLI merges incorrectly the plugin platform-specific `AndroidManifest.xml` or `Info.plist` with the respective platform-specific configuration files from the project.
2452
+ * [Fixed #567](https://github.com/NativeScript/nativescript-cli/issues/567): You cannot use npm as a package manager inside your project.
2453
+ * [Fixed #569](https://github.com/NativeScript/nativescript-cli/issues/569): On some Windows systems, the CLI installation shows errors in the console.
2454
+
2455
+ 1.1.0 (2015, June 10)
2456
+ ==
2457
+
2458
+ ### Breaking
2459
+
2460
+ * Replaced `.tnsproject` with `package.json` to let you use npm and work with custom plugins in your project.<br/>The first time you run any NativeScript command on an existing project, your `.tnsproject` file will be automatically transformed into a `package.json` file describing your project configuration and data. After this, make sure to commit and push your changes if you are using version control.<br/>After the transformation is complete, you can install and use custom NativeScript plugins inside your project.
2461
+
2462
+ ### New
2463
+
2464
+ * [Implemented #510](https://github.com/NativeScript/nativescript-cli/issues/510): You can work with custom NativeScript plugins in your project. You can add a plugin from an npm package, a local folder, a URL or a `.tar.gz` file. For more information, run `$ tns help plugin`
2465
+ * [Implemented #362](https://github.com/NativeScript/nativescript-cli/issues/362): You can use npm as package manager for your NativeScript projects.
2466
+
2467
+ ### Updated
2468
+
2469
+ * [Updated #358](https://github.com/NativeScript/nativescript-cli/issues/358): Multiple improvements and bug fixes for iOS debugging.
2470
+
2471
+ ### Fixed
2472
+
2473
+ * [Fixed #446](https://github.com/NativeScript/nativescript-cli/issues/446): Autocompletion might continue to work after disabling because `tns autocomplete disable` does not update `.profile` files.
2474
+ * [Fixed #391](https://github.com/NativeScript/nativescript-cli/issues/391): The default 9-patch image for Android projects is malformed and causes error messages in the build log.
2475
+ * [Fixed #324](https://github.com/NativeScript/nativescript-cli/issues/324): When you run commands for the `ios` platform, the NativeScript CLI might show the following unrelated adb warning: `Unable to find adb in PATH. Default one from %s resources will be used.`
2476
+ * [Fixed #309](https://github.com/NativeScript/nativescript-cli/issues/309): You cannot open the device log for streaming with the `tns device log` command.
2477
+
2478
+ 1.0.2 (2015, May 27)
2479
+ ==
2480
+
2481
+ ### Fixed
2482
+
2483
+ * [Fixed #498](https://github.com/NativeScript/nativescript-cli/issues/498): On some Linux and OS X systems, when the USER or SUDO_USER environment variables are missing, you cannot run NativeScript CLI commands. The following error appears when you attempt to run `nativescript` or `tns` commands: `TypeError: Arguments to path.join must be strings`.
2484
+
2485
+ 1.0.1 (2015, May 8)
2486
+ ==
2487
+
2488
+ ### Fixed
2489
+
2490
+ * [Fixed #459](https://github.com/NativeScript/nativescript-cli/issues/459): You cannot add a third-party iOS native library to your project, if the path to the library contains spaces.
2491
+ * [Fixed #458](https://github.com/NativeScript/nativescript-cli/issues/458): If you have installed Xcode 6.2 or earlier on your system, you cannot debug in the iOS Simulator.
2492
+ * [Fixed #413](https://github.com/NativeScript/nativescript-cli/issues/413): If your project name contains a hyphen, the NativeScript CLI sets your application identifier inconsistently across the project.
2493
+
2494
+ 1.0.0 (2015, April 28)
2495
+ ==
2496
+
2497
+ ### New
2498
+
2499
+ * [Implemented #447](https://github.com/NativeScript/nativescript-cli/issues/447): `tns run ios`, `tns run android` and `tns emulate android` print the output of the running application in the console.
2500
+ * [Implemented #441](https://github.com/NativeScript/nativescript-cli/issues/441): Improved command-line completion.
2501
+ * [Implemented #416](https://github.com/NativeScript/nativescript-cli/issues/416): Improved installation.
2502
+ * [Implemented #358](https://github.com/NativeScript/nativescript-cli/issues/358): Improved `tns debug ios`.
2503
+
2504
+ ### Fixed
2505
+
2506
+ * [Fixed #446](https://github.com/NativeScript/nativescript-cli/issues/446): `tns autocomplete disable` might not disable command-line completion properly.
2507
+ * [Fixed #445](https://github.com/NativeScript/nativescript-cli/issues/445): For some commands, HTML help is shown instead of the console help.
2508
+ * [Fixed #444](https://github.com/NativeScript/nativescript-cli/issues/444): When you attempt to install the `nativescript` npm module using `sudo`, errors might be shown.
2509
+ * [Fixed #443](https://github.com/NativeScript/nativescript-cli/issues/443): When you attempt to configure command-line completion during installation, `ENOENT` error might be shown.
2510
+ * [Fixed #442](https://github.com/NativeScript/nativescript-cli/issues/442): The console does not show links properly.
2511
+ * [Fixed #394](https://github.com/NativeScript/nativescript-cli/issues/394): On OS X or Linux systems, the NativeScript CLI does not resolve symlinks and you cannot build your apps.
2512
+ * [Fixed #391](https://github.com/NativeScript/nativescript-cli/issues/391): The Android splash screen image in the template is malformed and causes errors in the build log.
2513
+ * [Fixed #324](https://github.com/NativeScript/nativescript-cli/issues/324): If the Android SDK is not properly configured, when you run `tns build ios`, `run ios`, `tns deploy ios` or `tns emulate ios`, the NativeScript CLI prints an irrelevant adb-related warning.
2514
+ * [Fixed #309](https://github.com/NativeScript/nativescript-cli/issues/309): You cannot open the device log for streaming with `tns device log`.
2515
+ * [Fixed #276](https://github.com/NativeScript/nativescript-cli/issues/276): On bash consoles, command-line completion does not work.
2516
+
2517
+ 0.10.0 (2015, April 21)
2518
+ ==
2519
+
2520
+ ### Breaking
2521
+
2522
+ * Introduced new project structure. To migrate to the new structure, complete the following steps.
2523
+ 1. Manually move all files and folders from the inner `app` folder one level up inside the outer `app` folder.
2524
+ 1. Remove the now empty inner `app` folder.
2525
+ 1. Verify that your project structure reflects the structure described [here](https://github.com/NativeScript/nativescript-cli/blob/production/README.md#create-project).
2526
+
2527
+ ### New
2528
+
2529
+ * [Implemented #388](https://github.com/NativeScript/nativescript-cli/issues/388): Improved the `--log trace` global option.
2530
+ * [Implemented #387](https://github.com/NativeScript/nativescript-cli/issues/387): Improved installation.
2531
+ * [Implemented #350](https://github.com/NativeScript/nativescript-cli/issues/350): Improved command-line completion.
2532
+ * [Implemented #175](https://github.com/NativeScript/nativescript-cli/issues/175): You can run your app in Android virtual devices, created from the Google APIs images from the Android SDK.
2533
+ * [Implemented #88](https://github.com/NativeScript/nativescript-cli/issues/88), [#291](https://github.com/NativeScript/nativescript-cli/issues/291): Introduced context-aware console help which you can access by running `tns <Command> -h` and extended HTML help which you access by running `tns help <Command>`.
2534
+
2535
+ ### Fixed
2536
+
2537
+ * [Fixed #380](https://github.com/NativeScript/nativescript-cli/issues/380): When you run `tns build android`, `tns run android`, `tns deploy android` or `tns emulate android`, the NativeScript CLI builds your project twice.
2538
+ * [Fixed #371](https://github.com/NativeScript/nativescript-cli/issues/371): On Android 5.x devices, NativeScript apps load very slowly on first run.
2539
+ * [Fixed #260](https://github.com/NativeScript/nativescript-cli/issues/260): On bash consoles, the `open` command might stop working.
2540
+ * [Fixed #257](https://github.com/NativeScript/nativescript-cli/issues/257): On bash consoles, you cannot pass arguments with spaces, even if escaped.
2541
+ * [Fixed #251](https://github.com/NativeScript/nativescript-cli/issues/251): On OS X systems, the command validation might not work properly.
2542
+ * [Fixed #248](https://github.com/NativeScript/nativescript-cli/issues/248): On OS X systems, the `tns deploy` command might not release the console.
2543
+ * [Fixed #169](https://github.com/NativeScript/nativescript-cli/issues/169): The native Xcode project is created with an incorrect name.
2544
+
2545
+ 0.9.4 (2015, March 18)
2546
+ ==
2547
+
2548
+ ### Fixed
2549
+
2550
+ * [Fixed #348](https://github.com/NativeScript/nativescript-cli/issues/348): `tns platform add ios` downloads the latest experimental version of the ios runtime instead of the latest stable version.
2551
+
2552
+ 0.9.3 (2015, March 18)
2553
+ ==
2554
+
2555
+ ### Fixed
2556
+
2557
+ * [Fixed #312](https://github.com/NativeScript/nativescript-cli/issues/312): `tns platform add ios` does not preserve your app ID, if not default.
2558
+
2559
+ 0.9.2 (2015, March 17)
2560
+ ===
2561
+
2562
+ ### New
2563
+
2564
+ * [Implemented #305](https://github.com/NativeScript/nativescript-cli/issues/305), [#322](https://github.com/NativeScript/nativescript-cli/issues/322): You can quickly add or update your platform runtime to a specific version by running `tns platform update platform@version`<br/>For example: `tns platform update ios@0.9.2-beta`<br/>The NativeScript team will publish experimental support for the latest versions of iOS and Android.<br/>To list all available versions for android, run $ npm view tns-android versions<br/>To list only experimental versions for android, run $ npm view tns-android dist-tags
2565
+ To list all available versions for ios, run $ npm view tns-ios versions<br/>To list only experimental versions for ios, run $ npm view tns-ios dist-tags
2566
+ * [Implemented #302](https://github.com/NativeScript/nativescript-cli/issues/302): You can configure proxy settings for the NativeScript CLI.
2567
+
2568
+ ### Fixed
2569
+
2570
+ * [Fixed #299](https://github.com/NativeScript/nativescript-cli/issues/299): You cannot build the default `Hello World` app for Android on OS X systems.
2571
+ * [Fixed #297](https://github.com/NativeScript/nativescript-cli/issues/297): You cannot install the NativeScript CLI.