|
4 | 4 | "private": true,
|
5 | 5 | "type": "module",
|
6 | 6 | "scripts": {
|
7 |
| - "start": "vite preview --host localhost --port 3000", |
| 7 | + "build": "pnpm run clean && pnpm run build:code", |
| 8 | + "build:code": "vite build", |
| 9 | + "ci:format": "pnpm run format", |
| 10 | + "ci:lint": "pnpm run lint", |
| 11 | + "ci:typecheck": "pnpm run typecheck", |
| 12 | + "clean": "rimraf ./dist && rimraf ./coverage", |
8 | 13 | "dev": "vite",
|
9 |
| - "lint": "eslint --max-warnings 0 .", |
10 |
| - "lint:fix": "eslint --fix --max-warnings 0 .", |
11 | 14 | "format": "prettier --check './src/**/*.{js,jsx,ts,tsx,css,md,json}' --config './prettier.config.cjs'",
|
12 | 15 | "format:fix": "prettier --write './src/**/*.{js,jsx,ts,tsx,css,md,json}' --config './prettier.config.cjs'",
|
13 |
| - "clean": "rimraf ./dist && rimraf ./coverage", |
14 |
| - "build:code": "tsc && vite build", |
15 |
| - "build": "pnpm run clean && pnpm run lint && pnpm run build:code", |
| 16 | + "lint": "eslint --max-warnings 0 .", |
| 17 | + "lint:fix": "eslint --fix --max-warnings 0 .", |
16 | 18 | "postbuild": "node ./postbuild.cjs",
|
17 | 19 | "preview": "vite preview --port 3000",
|
18 |
| - "ci:lint": "pnpm run lint", |
19 |
| - "ci:format": "pnpm run format" |
| 20 | + "start": "vite preview --host localhost --port 3000", |
| 21 | + "typecheck": "tsc --noEmit" |
20 | 22 | },
|
21 | 23 | "dependencies": {
|
22 | 24 | "@dnd-kit/core": "^6.1.0",
|
|
0 commit comments