You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pnpm build:packages
The filename, directory name, or volume label syntax is incorrect.
ERR_PNPM_RECURSIVE_EXEC_FIRST_FAIL Command "build:packages" not found
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
pnpm build:packages
The filename, directory name, or volume label syntax is incorrect.
ERR_PNPM_RECURSIVE_EXEC_FIRST_FAIL Command "build:packages" not found
但是package.json中
存在相关参数
"scripts": {
"prepare": "cd .. && husky install console/.husky",
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"build:packages": "pnpm --filter "./packages/" build",
"preview": "vite preview --port 5050",
"api-client:gen": "pnpm --filter "./packages/api-client" gen",
"test:unit": "vitest --environment jsdom --run && pnpm run test:unit:packages",
"test:unit:watch": "vitest --environment jsdom --watch",
"test:unit:ui": "vitest --environment jsdom --watch --ui",
"test:unit:coverage": "vitest run --environment jsdom --coverage",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"typecheck": "vue-tsc --noEmit -p tsconfig.app.json --composite false && pnpm run typecheck:packages",
"lint": "eslint ./src --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore --max-warnings=0 && pnpm run lint:packages",
"prettier": "prettier --write './src//*.{vue,js,jsx,ts,tsx,css,scss,json,yml,yaml,html}' && pnpm run prettier:packages",
"typecheck:packages": "pnpm --parallel --filter "./packages/" run typecheck",
"lint:packages": "pnpm --parallel --filter "./packages/" lint",
"prettier:packages": "pnpm --parallel --filter "./packages/" prettier",
"test:unit:packages": "pnpm --parallel --filter "./packages/" run test:unit"
},
Beta Was this translation helpful? Give feedback.
All reactions