@blocklet/component-studio-cli 0.5.50 → 0.5.51
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/utils/helper.js
CHANGED
|
@@ -122,7 +122,7 @@ export async function installDependencies(dirs, operation = 'install') {
|
|
|
122
122
|
// ignore error
|
|
123
123
|
}
|
|
124
124
|
let errorOutput = '';
|
|
125
|
-
const depProcess = exec("npx -y taze -f -r -w -n '/arcblock|ocap|abtnode|blocklet|did-connect|did-comment|nedb/'
|
|
125
|
+
const depProcess = exec("npx -y taze -f -r -w -n '/arcblock|ocap|abtnode|blocklet|did-connect|did-comment|nedb/' minor && pnpm install -f && pnpm dedupe", {
|
|
126
126
|
cwd: dirPath,
|
|
127
127
|
env: {
|
|
128
128
|
...process.env,
|
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"bump-version": "zx --quiet scripts/bump-version.mjs",
|
|
28
28
|
"dev-front": "vite serve .",
|
|
29
29
|
"build-lib": "node -r dotenv-flow/config -e \"require('@blocklet/pages-kit-block-studio/build-lib')\"",
|
|
30
|
-
"update:deps": "npx -y taze -f -r -w -n '/arcblock|ocap|abtnode|blocklet|did-connect|did-comment|nedb/'
|
|
30
|
+
"update:deps": "npx -y taze -f -r -w -n '/arcblock|ocap|abtnode|blocklet|did-connect|did-comment|nedb/' minor && pnpm install && pnpm run deduplicate",
|
|
31
31
|
"deduplicate": "pnpm dedupe",
|
|
32
32
|
"preinstall": "npx only-allow pnpm",
|
|
33
33
|
"postinstall": "node scripts/init-component-studio.mjs"
|