|
60 | 60 | "build": "rollup -c && node scripts/cp.js src/runtime/components assets/components && npm run types", |
61 | 61 | "dev": "rollup -cw", |
62 | 62 | "lint": "eslint --ignore-path .gitignore --ignore-pattern \"src/packaging/test/**\" \"{src,test}/**/*.{ts,mjs,js,svelte}\" && npm run check-format", |
63 | | - "check": "tsc && npm run check:integration && npm run check:prerendering", |
64 | | - "check:integration": "npm run check:integration:amp && npm run check:integration:basics && npm run check:integration:options && npm run check:integration:options-2", |
65 | | - "check:integration:amp": "cd test/apps/amp && pnpm sync && pnpm check", |
66 | | - "check:integration:basics": "cd test/apps/basics && pnpm sync && pnpm check", |
67 | | - "check:integration:options": "cd test/apps/options && pnpm sync && pnpm check", |
68 | | - "check:integration:options-2": "cd test/apps/options-2 && pnpm sync && pnpm check", |
69 | | - "check:prerendering": "npm run check:prerendering:basics && npm run check:prerendering:options", |
70 | | - "check:prerendering:basics": "cd test/prerendering/basics && pnpm sync && pnpm check", |
71 | | - "check:prerendering:options": "cd test/prerendering/options && pnpm sync && pnpm check", |
| 63 | + "check": "tsc", |
| 64 | + "check:all": "tsc && pnpm run -r check --filter ./", |
72 | 65 | "format": "npm run check-format -- --write", |
73 | 66 | "check-format": "prettier --check . --config ../../.prettierrc --ignore-path .gitignore", |
74 | 67 | "prepublishOnly": "npm run build", |
75 | | - "test": "npm run test:unit && npm run test:typings && npm run test:packaging && npm run test:prerendering && npm run test:integration", |
| 68 | + "test": "npm run test:unit && npm run test:typings && npm run test:packaging", |
| 69 | + "test:all": "pnpm run -r test --workspace-concurrency 1 --filter ./", |
76 | 70 | "test:unit": "uvu src \"(spec\\.js|test[\\\\/]index\\.js)\" -i packaging", |
77 | 71 | "test:typings": "tsc --project test/typings", |
78 | | - "test:prerendering": "pnpm test:prerendering:basics && pnpm test:prerendering:options", |
79 | | - "test:prerendering:basics": "cd test/prerendering/basics && pnpm test", |
80 | | - "test:prerendering:options": "cd test/prerendering/options && pnpm test", |
81 | 72 | "test:packaging": "uvu src/packaging \"(spec\\.js|test[\\\\/]index\\.js)\"", |
82 | | - "test:integration": "pnpm test:integration:amp && pnpm test:integration:basics && pnpm test:integration:options && pnpm test:integration:options-2", |
83 | | - "test:integration:amp": "cd test/apps/amp && pnpm test", |
84 | | - "test:integration:basics": "cd test/apps/basics && pnpm test", |
85 | | - "test:integration:options": "cd test/apps/options && pnpm test", |
86 | | - "test:integration:options-2": "cd test/apps/options-2 && pnpm test", |
87 | 73 | "types": "node scripts/extract-types.js" |
88 | 74 | }, |
89 | 75 | "exports": { |
|
0 commit comments