diff --git a/package.json b/package.json index 32accd973..2289ea82f 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "pub:prepatch": "tnpm run watchdog:build && lerna publish --force-publish --cd-version prepatch --npm-tag beta --preid beta", "pub:prerelease": "tnpm run watchdog:build && lerna publish --force-publish --cd-version prerelease --npm-tag beta --preid beta", "setup": "./scripts/setup.sh", + "setup:skip-build": "./scripts/setup-skip-build.sh", "start": "./scripts/start.sh", "start:demo": "./scripts/start.sh @ali/lowcode-demo", "start:server": "./scripts/start-server.sh", diff --git a/packages/editor-preset-vision/package.json b/packages/editor-preset-vision/package.json index 7dc168bc3..801b2940c 100644 --- a/packages/editor-preset-vision/package.json +++ b/packages/editor-preset-vision/package.json @@ -20,7 +20,7 @@ "dependencies": { "@ali/lowcode-designer": "^1.0.31", "@ali/lowcode-editor-core": "^1.0.31", - "@ali/lowcode-editor-setters": "1.0.29", + "@ali/lowcode-editor-setters": "1.0.30", "@ali/lowcode-editor-skeleton": "^1.0.31", "@ali/lowcode-plugin-designer": "^1.0.31", "@ali/lowcode-plugin-outline-pane": "^1.0.31", diff --git a/packages/engine/package.json b/packages/engine/package.json index e21bf530f..59abb5a05 100644 --- a/packages/engine/package.json +++ b/packages/engine/package.json @@ -24,7 +24,7 @@ "@ali/lowcode-plugin-designer": "^1.0.31", "@ali/lowcode-plugin-outline-pane": "^1.0.31", "@ali/lowcode-utils": "^1.0.31", - "@ali/lowcode-editor-setters": "1.0.29", + "@ali/lowcode-editor-setters": "1.0.30", "@ali/ve-i18n-util": "^2.0.0", "@ali/ve-icons": "^4.1.9", "@ali/ve-less-variables": "2.0.3", diff --git a/scripts/setup-skip-build.sh b/scripts/setup-skip-build.sh new file mode 100755 index 000000000..7aced60d2 --- /dev/null +++ b/scripts/setup-skip-build.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash + +tnpm i -g lerna @ali/tyarn + +rm -rf node_modules package-lock.json yarn.lock +lerna clean -y +find ./packages -type f -name "package-lock.json" -exec rm -f {} \; + +lerna bootstrap