From 102aed78e5648d5fc0d5c6d8e071874685d59c8b Mon Sep 17 00:00:00 2001 From: roymondchen Date: Thu, 1 Dec 2022 20:21:07 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20docs=E7=A7=BB=E9=99=A4=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E7=A9=BA=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pnpm-workspace.yaml | 1 - scripts/release.js | 2 -- 2 files changed, 3 deletions(-) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index b734c569..e760c85d 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,5 +1,4 @@ packages: - 'packages/*' - 'playground' - - 'docs' - 'runtime/*' \ No newline at end of file diff --git a/scripts/release.js b/scripts/release.js index 0ce98e4a..4686ed7e 100644 --- a/scripts/release.js +++ b/scripts/release.js @@ -31,7 +31,6 @@ const runIfNotDry = isDryRun ? dryRun : run; const getPkgRoot = (pkg) => path.resolve(__dirname, `../packages/${pkg}`); const getRunTimeRoot = (pkg) => path.resolve(__dirname, `../runtime/${pkg}`); const getPlayground = () => path.resolve(__dirname, `../playground`); -const getDocs = () => path.resolve(__dirname, `../docs`); const step = (msg) => console.log(chalk.cyan(msg)); async function main() { @@ -141,7 +140,6 @@ function updateVersions(version) { packages.forEach((p) => updatePackage(getPkgRoot(p), version)); ['vue3', 'react', 'vue2'].forEach((p) => updatePackage(getRunTimeRoot(p), version)); updatePackage(getPlayground(), version); - updatePackage(getDocs(), version); } function updatePackage(pkgRoot, version) {