nativescript 8.3.0 → 8.3.1
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.
|
@@ -218,7 +218,7 @@ class AndroidVirtualDeviceService {
|
|
|
218
218
|
getConfigurationError() {
|
|
219
219
|
const pathToEmulatorExecutable = this.$hostInfo.isWindows
|
|
220
220
|
? `${this.pathToEmulatorExecutable}.exe`
|
|
221
|
-
: this.
|
|
221
|
+
: this.pathToEmulatorExecutable;
|
|
222
222
|
if (!this.$fs.exists(pathToEmulatorExecutable)) {
|
|
223
223
|
return "Unable to find the path to emulator executable and will not be able to start the emulator. Searched paths: [$ANDROID_HOME/tools/emulator, $ANDROID_HOME/emulator/emulator]";
|
|
224
224
|
}
|
|
@@ -47,7 +47,7 @@ class MigrateController extends update_controller_base_1.UpdateControllerBase {
|
|
|
47
47
|
{
|
|
48
48
|
packageName: "@nativescript/core",
|
|
49
49
|
minVersion: "6.5.0",
|
|
50
|
-
desiredVersion: "~8.
|
|
50
|
+
desiredVersion: "~8.3.0",
|
|
51
51
|
shouldAddIfMissing: true,
|
|
52
52
|
},
|
|
53
53
|
{
|
|
@@ -57,7 +57,7 @@ class MigrateController extends update_controller_base_1.UpdateControllerBase {
|
|
|
57
57
|
{
|
|
58
58
|
packageName: "@nativescript/types",
|
|
59
59
|
minVersion: "7.0.0",
|
|
60
|
-
desiredVersion: "~8.
|
|
60
|
+
desiredVersion: "~8.3.0",
|
|
61
61
|
isDev: true,
|
|
62
62
|
},
|
|
63
63
|
{
|
|
@@ -195,13 +195,13 @@ class MigrateController extends update_controller_base_1.UpdateControllerBase {
|
|
|
195
195
|
{
|
|
196
196
|
packageName: "@nativescript/ios",
|
|
197
197
|
minVersion: "6.5.3",
|
|
198
|
-
desiredVersion: "~8.
|
|
198
|
+
desiredVersion: "~8.3.0",
|
|
199
199
|
isDev: true,
|
|
200
200
|
},
|
|
201
201
|
{
|
|
202
202
|
packageName: "@nativescript/android",
|
|
203
203
|
minVersion: "7.0.0",
|
|
204
|
-
desiredVersion: "~8.
|
|
204
|
+
desiredVersion: "~8.3.0",
|
|
205
205
|
isDev: true,
|
|
206
206
|
},
|
|
207
207
|
];
|
package/package.json
CHANGED