|
37 | 37 | "bin": "build/main.js", |
38 | 38 | "scripts": { |
39 | 39 | "clean": "shx rm -rf build", |
40 | | - "lint": "turbo run lint.turbo", |
41 | | - "lint.turbo": "eslint . --cache \"./**/*.{js,ts,mjs,mts,cjs,cts,json,yaml,yml}\" --fix", |
42 | | - "test.lint": "turbo run test.turbo", |
43 | | - "test.lint.turbo": "eslint . --cache \"./**/*.{js,ts,mjs,mts,cjs,cts,json,yaml,yml}\"", |
44 | | - "format.prettier": "prettier -l --write --cache ./**/*.{yaml,yml,md}", |
| 40 | + "lint.eslint": "eslint . --cache --cache-location ./.cache/.eslintcache \"./**/*.{js,ts,mjs,mts,cjs,cts,json,yaml,yml}\" --fix", |
| 41 | + "lint.biome": "biome check --write --unsafe .", |
| 42 | + "lint": "turbo run lint.eslint lint.biome", |
| 43 | + "test.lint.eslint": "eslint . --cache --cache-location ./.cache/.eslintcache \"./**/*.{js,ts,mjs,mts,cjs,cts,json,yaml,yml}\"", |
| 44 | + "test.lint.biome": "biome check .", |
| 45 | + "test.lint": "turbo run test.lint.eslint test.lint.biome", |
| 46 | + "format.prettier": "prettier -l --write --cache --cache-location ./.cache/.prettiercache \"./**/*.{yaml,yml,md}\"", |
45 | 47 | "format.biome": "biome format --write .", |
46 | | - "format": "run-p format.prettier format.biome", |
47 | | - "test.format.prettier": "prettier -l --check --cache ./**/*.{yaml,yml,md}", |
| 48 | + "format": "turbo run format.prettier format.biome", |
| 49 | + "test.format.prettier": "prettier -l --check --cache --cache-location ./.cache/.prettiercache \"./**/*.{yaml,yml,md}\"", |
48 | 50 | "test.format.biome": "biome format --check .", |
49 | | - "test.format": "run-p test.format.prettier test.format.biome", |
| 51 | + "test.format": "turbo run test.format.prettier test.format.biome", |
50 | 52 | "dev.tsc": "tsc -w --pretty", |
51 | 53 | "dev.legacy-main": "vite --mode legacy-main", |
52 | 54 | "dev.legacy-lib": "vite --mode legacy-lib", |
|
58 | 60 | "build.legacy-lib": "vite build --mode legacy-lib", |
59 | 61 | "build.modern-main": "vite build --mode modern-main", |
60 | 62 | "build.modern-lib": "vite build --mode modern-lib", |
61 | | - "build": "turbo run build.turbo", |
62 | | - "build.turbo": "", |
| 63 | + "build": "turbo run build.tsc build.legacy-main build.legacy-lib build.modern-main build.modern-lib", |
63 | 64 | "test": "cross-env NODE_OPTIONS=--enable-source-maps pnpx vitest --watch false", |
64 | 65 | "coverage": "pnpm test --coverage" |
65 | 66 | }, |
|
0 commit comments