@plasmicapp/cli 0.1.333 → 0.1.334
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/dist/index.js +2 -2
- package/dist/lib.js +2 -2
- package/package.json +2 -2
- package/src/utils/npm-utils.ts +2 -2
package/dist/index.js
CHANGED
|
@@ -501822,9 +501822,9 @@ function installCommand(config, pkg, baseDir, opts = {}) {
|
|
|
501822
501822
|
if (opts.global) {
|
|
501823
501823
|
return `npm install -g ${pkg}`;
|
|
501824
501824
|
} else if (opts.dev) {
|
|
501825
|
-
return `npm install --save-dev --
|
|
501825
|
+
return `npm install --save-dev --ignore-scripts ${pkg}`;
|
|
501826
501826
|
} else {
|
|
501827
|
-
return `npm install --
|
|
501827
|
+
return `npm install --ignore-scripts ${pkg}`;
|
|
501828
501828
|
}
|
|
501829
501829
|
}
|
|
501830
501830
|
}
|
package/dist/lib.js
CHANGED
|
@@ -497164,9 +497164,9 @@ function installCommand(config, pkg, baseDir, opts = {}) {
|
|
|
497164
497164
|
if (opts.global) {
|
|
497165
497165
|
return `npm install -g ${pkg}`;
|
|
497166
497166
|
} else if (opts.dev) {
|
|
497167
|
-
return `npm install --save-dev --
|
|
497167
|
+
return `npm install --save-dev --ignore-scripts ${pkg}`;
|
|
497168
497168
|
} else {
|
|
497169
|
-
return `npm install --
|
|
497169
|
+
return `npm install --ignore-scripts ${pkg}`;
|
|
497170
497170
|
}
|
|
497171
497171
|
}
|
|
497172
497172
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.334",
|
|
4
4
|
"description": "plasmic cli for syncing local code with Plasmic designs",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=12"
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"wrap-ansi": "^7.0.0",
|
|
84
84
|
"yargs": "^15.4.1"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "01695647a4ffb7abc8d31004535f7db6cc29f3be"
|
|
87
87
|
}
|
package/src/utils/npm-utils.ts
CHANGED
|
@@ -194,9 +194,9 @@ export function installCommand(
|
|
|
194
194
|
if (opts.global) {
|
|
195
195
|
return `npm install -g ${pkg}`;
|
|
196
196
|
} else if (opts.dev) {
|
|
197
|
-
return `npm install --save-dev --
|
|
197
|
+
return `npm install --save-dev --ignore-scripts ${pkg}`;
|
|
198
198
|
} else {
|
|
199
|
-
return `npm install --
|
|
199
|
+
return `npm install --ignore-scripts ${pkg}`;
|
|
200
200
|
}
|
|
201
201
|
}
|
|
202
202
|
}
|