Skip to content

fix: build on windows #21287

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/api-generator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"build": "node --import tsx --no-warnings src/index.ts",
"lint": "eslint --ext .ts,.json src -f codeframe --max-warnings 0",
"lint:fix": "node --run lint -- --fix"
"lint:fix": "pnpm run lint -- --fix"
},
"author": "",
"license": "ISC",
Expand Down
4 changes: 2 additions & 2 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"build": "vite build",
"preview": "vite preview",
"preview-https": "HTTPS=true vite preview",
"lint": "concurrently 'vue-tsc --noEmit --pretty' 'node --run lint:md' 'jest --no-cache' -n 'tsc,md,eslint' --kill-others-on-fail -gr",
"lint:fix": "node --run fix:md && JEST_FIX=true jest --no-cache",
"lint": "concurrently 'vue-tsc --noEmit --pretty' 'pnpm run lint:md' 'jest --no-cache' -n 'tsc,md,eslint' --kill-others-on-fail -gr",
"lint:fix": "pnpm run fix:md && JEST_FIX=true jest --no-cache",
"lint:md": "markdownlint --config .markdownlintrc src/pages/en",
"fix:md": "markdownlint --config .markdownlintrc src/pages/en --fix"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/vuetify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,23 +104,23 @@
"node": "^12.20 || >=14.13"
},
"scripts": {
"watch": "node --run build:lib -- --watch",
"watch": "pnpm run build:lib -- --watch",
"dev": "NODE_ENV=development vite",
"dev:ssr": "NODE_ENV=development VITE_SSR=true vite-ssr",
"dev:prod": "concurrently \"vite build -w\" \"vite preview\"",
"dev:typecheck": "vue-tsc --noEmit --skipLibCheck --project ./tsconfig.dev.json",
"build": "rimraf lib dist && node --run build:lib && concurrently \"node --run build:dist\" \"node --run build:types:lib\" -n \"dist,types\" --kill-others-on-fail -gr && node --run build:types:bundle",
"build": "rimraf lib dist && pnpm run build:lib && concurrently \"pnpm run build:dist\" \"pnpm run build:types:lib\" -n \"dist,types\" --kill-others-on-fail -gr && pnpm run build:types:bundle",
"build:dist": "rollup --config build/rollup.config.js",
"build:lib": "NODE_ENV=lib babel src --out-dir lib --source-maps --extensions \".ts\",\".tsx\",\".snap\" --copy-files --no-copy-ignored --out-file-extension .js",
"build:types": "node --run build:types:lib && node --run build:types:bundle",
"build:types": "pnpm run build:types:lib && pnpm run build:types:bundle",
"build:types:lib": "tspc --pretty --emitDeclarationOnly -p tsconfig.dist.json && node build/transform-types.js",
"build:types:bundle": "rollup --config build/rollup.types.config.js",
"tsc": "tsc",
"test": "vitest",
"test:unit": "vitest --project unit",
"test:browser": "vitest --project browser",
"test:open": "TEST_BAIL=1 vitest --project browser -w",
"test:coverage": "node --run test -- --coverage",
"test:coverage": "pnpm run test -- --coverage",
"test:percy": "percy exec -- vitest --project browser",
"test:all": "concurrently -gr 'vitest --project unit' 'vitest --project browser --shard=1/5' 'vitest --project browser --shard=2/5' 'vitest --project browser --shard=3/5' 'vitest --project browser --shard=4/5' 'vitest --project browser --shard=5/5'",
"lint": "concurrently -n \"tsc,eslint\" --kill-others-on-fail \"tsc -p tsconfig.checks.json --noEmit --pretty\" \"eslint src -f codeframe --max-warnings 0\"",
Expand Down