-
Notifications
You must be signed in to change notification settings - Fork 472
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The 'build' command in the template/config/typescript/package.json file may be incorrect. #393
Comments
Did you try to run But yeah, I think you're right it would be better. |
The Sure, thank you for giving me the opportunity to submit a pull request. |
can somone explain why npm-run-all2 is in package json after a fresh vue-create? what is this even for? |
This npm-run-all package provides 3 CLI commands. then. the lint command uses run-s {
"name": "vue-project",
"lint": "run-s lint:*",
},
}
|
@yanhao98 ahhh interesting, thank you! One last question... what is @tsconfig/node22 for? and jiti? I dont see jiti referenced anywyere, i see node22 seems to be loading the node TS config. All my old (updated) apps dont have this package, but for last project i decided to do a fresh create-vue. how is this different than previous versions that didnt use it? |
awesome, thanks! |
When I execute the npm command

npm run build -- --mode test
, the "@" placeholder only accepts "test", and the "--mode" is missing.When I modified the build command to "run-p type-check "build-only -- {@}" --" (added

--
after build-only), executing the npm commandnpm run build -- --mode test
was successful.The text was updated successfully, but these errors were encountered: