Skip to content

Commit

Permalink
fix: try to fix the error reported by the stub command in the window …
Browse files Browse the repository at this point in the history
…system (#4560)
  • Loading branch information
anncwb authored Oct 3, 2024
1 parent f701646 commit 13fd0ea
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/src/en/guide/essentials/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ The execution command is: `pnpm run [script]` or `npm run [script]`.
// Lint code
"lint": "vsh lint",
// After installing dependencies, execute the stub script for all packages
"postinstall": "turbo run stub",
"postinstall": "pnpm -r run stub --if-present",
// Only allow using pnpm
"preinstall": "npx only-allow pnpm",
// Install husky
Expand Down
2 changes: 1 addition & 1 deletion docs/src/guide/essentials/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ npm 脚本是项目常见的配置,用于执行一些常见的任务,比如
// lint 代码
"lint": "vsh lint",
// 依赖安装完成之后,执行所有包的stub脚本
"postinstall": "turbo run stub",
"postinstall": "pnpm -r run stub --if-present",
// 只允许使用pnpm
"preinstall": "npx only-allow pnpm",
// husky的安装
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"dev:play": "pnpm -F @vben/playground run dev",
"format": "vsh lint --format",
"lint": "vsh lint",
"postinstall": "turbo run stub",
"postinstall": "pnpm -r run stub --if-present",
"preinstall": "npx only-allow pnpm",
"prepare": "is-ci || husky",
"preview": "turbo-run preview",
Expand Down
1 change: 1 addition & 0 deletions scripts/turbo-run/src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export async function run(options: RunOptions) {
process.exit(1);
}

process.env.VITE_CJS_IGNORE_WARNING = '1';
execaCommand(`pnpm --filter=${selectPkg} run ${command}`, {
stdio: 'inherit',
});
Expand Down
3 changes: 0 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@
"dependsOn": ["^build"],
"outputs": [".nitro/**", ".output/**"]
},
"stub": {
"cache": false
},
"test:e2e": {},
"dev": {
"dependsOn": [],
Expand Down

0 comments on commit 13fd0ea

Please sign in to comment.