|
30 | 30 | "sideEffects": false, |
31 | 31 | "scripts": { |
32 | 32 | "check": "run-p -c --aggregate-output check:*", |
33 | | - "check-ci": "pnpm check:lint", |
| 33 | + "check-ci": "pnpm run check:lint", |
34 | 34 | "check:lint": "eslint --report-unused-disable-directives .", |
35 | | - "check:lint:fix": "pnpm check:lint --fix", |
| 35 | + "check:lint:fix": "pnpm run check:lint --fix", |
36 | 36 | "build": "pnpm run clean:dist && pnpm run build:cjs", |
37 | 37 | "build:cjs": "tsc", |
38 | 38 | "check:tsc": "tsc --noEmit", |
|
42 | 42 | "clean:coverage": "del-cli 'coverage'", |
43 | 43 | "clean:node_modules": "del-cli '**/node_modules'", |
44 | 44 | "coverage": "run-s coverage:*", |
45 | | - "coverage:test": "pnpm test:unit:coverage", |
| 45 | + "coverage:test": "pnpm run test:unit:coverage", |
46 | 46 | "coverage:percent": "node scripts/get-coverage-percentage.mjs", |
47 | 47 | "coverage:type": "dotenvx -q run -f .env.local -- type-coverage --detail", |
48 | 48 | "fix": "run-s lint:fix check:lint:fix", |
|
57 | 57 | "precommit": "lint-staged", |
58 | 58 | "prepare": "husky", |
59 | 59 | "test": "run-s check test:*", |
60 | | - "pretest:unit": "pnpm build:cjs", |
| 60 | + "pretest:unit": "pnpm run build", |
61 | 61 | "test:unit": "dotenvx -q run -f .env.test -- vitest --run", |
62 | 62 | "test:unit:coverage": "dotenvx -q run -f .env.test -- vitest run --coverage", |
63 | 63 | "test:unit:update": "dotenvx -q run -f .env.test -- vitest --run --update", |
|
115 | 115 | ], |
116 | 116 | "lint-staged": { |
117 | 117 | "*.{cjs,js,json,md,mjs,mts,ts}": [ |
118 | | - "pnpm lint:fix:oxlint", |
119 | | - "pnpm lint:fix:biome -- --no-errors-on-unmatched --files-ignore-unknown=true --colors=off" |
| 118 | + "pnpm run lint:fix:oxlint", |
| 119 | + "pnpm run lint:fix:biome -- --no-errors-on-unmatched --files-ignore-unknown=true --colors=off" |
120 | 120 | ] |
121 | 121 | }, |
122 | 122 | "pnpm": { |
|
0 commit comments