@akylas/nativescript-cli 8.10.0 → 8.11.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.
package/README.md
CHANGED
|
@@ -119,9 +119,9 @@ In the command prompt, run the following command.
|
|
|
119
119
|
|
|
120
120
|
OS | Node.js installed from https://nodejs.org/ | Node.js installed via package manager
|
|
121
121
|
---|---------------------|----
|
|
122
|
-
Windows | `npm install nativescript -g` | `npm install nativescript -g`
|
|
123
|
-
macOS | `sudo npm install nativescript -g --unsafe-perm` | `npm install nativescript -g`
|
|
124
|
-
Linux | `sudo npm install nativescript -g --unsafe-perm` | `npm install nativescript -g`
|
|
122
|
+
Windows | `npm install @akylas/nativescript-cli -g` | `npm install @akylas/nativescript-cli -g`
|
|
123
|
+
macOS | `sudo npm install @akylas/nativescript-cli -g --unsafe-perm` | `npm install @akylas/nativescript-cli -g`
|
|
124
|
+
Linux | `sudo npm install @akylas/nativescript-cli -g --unsafe-perm` | `npm install @akylas/nativescript-cli -g`
|
|
125
125
|
|
|
126
126
|
To check if your system is configured properly, run the following command.
|
|
127
127
|
|
package/lib/project-data.js
CHANGED
|
@@ -230,7 +230,7 @@ ProjectData.PROJECT_TYPES = [
|
|
|
230
230
|
},
|
|
231
231
|
{
|
|
232
232
|
type: constants.ProjectTypes.SvelteFlavorName,
|
|
233
|
-
requiredDependencies: ["svelte-native"],
|
|
233
|
+
requiredDependencies: ["@nativescript-community/svelte-native"],
|
|
234
234
|
},
|
|
235
235
|
{
|
|
236
236
|
type: constants.ProjectTypes.TsFlavorName,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akylas/nativescript-cli",
|
|
3
3
|
"main": "./lib/nativescript-cli-lib.js",
|
|
4
|
-
"version": "8.
|
|
4
|
+
"version": "8.11.1",
|
|
5
5
|
"author": "NativeScript <oss@nativescript.org>",
|
|
6
6
|
"description": "Command-line interface for building NativeScript projects",
|
|
7
7
|
"bin": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dev": "tsc --watch",
|
|
36
36
|
"setup": "npm i --ignore-scripts && npx husky",
|
|
37
37
|
"test": "npm run tsc && mocha --config=test/.mocharc.yml",
|
|
38
|
-
"postinstall": "node postinstall.js",
|
|
38
|
+
"postinstall": "patch-package && node postinstall.js",
|
|
39
39
|
"preuninstall": "node preuninstall.js",
|
|
40
40
|
"prepack": "grunt prepare",
|
|
41
41
|
"pack": "grunt pack",
|
|
@@ -156,6 +156,7 @@
|
|
|
156
156
|
"istanbul": "0.4.5",
|
|
157
157
|
"lint-staged": "~15.5.2",
|
|
158
158
|
"mocha": "11.7.4",
|
|
159
|
+
"patch-package": "^8.0.1",
|
|
159
160
|
"sinon": "19.0.5",
|
|
160
161
|
"source-map-support": "0.5.21",
|
|
161
162
|
"standard-version": "9.5.0",
|