|
55 | 55 | "docs:serve": "vitepress serve docs", |
56 | 56 | "docs:setup": "pnpm build:typed && pnpm docs:apigen", |
57 | 57 | "example:ssr": "cd examples/ssr/vite && pnpm dev", |
58 | | - "fix": "run-p lint:fix format:fix", |
59 | | - "format:fix": "run-p \"format:prettier --write\"", |
60 | | - "format:prettier": "prettier --config prettier.config.mjs --ignore-path .prettierignore --list-different '**/*.{ts,js,json,html}'", |
61 | | - "lint": "run-p lint:eslint", |
| 58 | + "fix": "pnpm run --color \"/^fix:/\"", |
| 59 | + "fix:eslint": "eslint . --fix --cache", |
| 60 | + "fix:prettier": "prettier --write . --experimental-cli", |
| 61 | + "lint": "pnpm run --color \"/^lint:/\"", |
62 | 62 | "lint:eslint": "eslint . --cache", |
63 | | - "lint:fix": "run-p \"lint:eslint --fix\"", |
| 63 | + "lint:prettier": "prettier --check . --experimental-cli", |
64 | 64 | "prebuild": "test \"$CI\" = true && npx pnpm install -r --store=node_modules/.pnpm-store || echo skipping pnpm install", |
65 | 65 | "preinstall": "node ./scripts/preinstall.js", |
66 | 66 | "prepare": "git config --local core.hooksPath .githooks", |
|
81 | 81 | "@intlify/core-base": "workspace:*", |
82 | 82 | "@intlify/message-compiler": "workspace:*", |
83 | 83 | "@intlify/vue-i18n-core": "workspace:*", |
| 84 | + "@kazupon/prettier-config": "^0.1.1", |
84 | 85 | "@microsoft/api-extractor": "7.15.2", |
85 | 86 | "@rolldown/plugin-node-polyfills": "^1.0.0", |
86 | 87 | "@rollup/plugin-commonjs": "^28.0.0", |
|
116 | 117 | "picocolors": "^1.0.0", |
117 | 118 | "pkg-pr-new": "^0.0.60", |
118 | 119 | "playwright-core": "^1.45.3", |
119 | | - "prettier": "^3.3.3", |
| 120 | + "prettier": "^3.6.2", |
120 | 121 | "rolldown": "1.0.0-beta.38", |
121 | 122 | "rollup": "^4.21.2", |
122 | 123 | "rollup-plugin-dts": "^6.1.1", |
|
142 | 143 | "node": ">= 20" |
143 | 144 | }, |
144 | 145 | "private": true, |
| 146 | + "prettier": "@kazupon/prettier-config", |
145 | 147 | "lint-staged": { |
146 | 148 | "*.{json,md,yml}": [ |
147 | 149 | "prettier --write" |
|
0 commit comments