Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactoring generation script #135

Merged
merged 13 commits into from
Oct 4, 2022
17 changes: 13 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"check": "tsc",
"format": "prettier --write .",
"lint": "eslint .",
"test": "echo \"No tests available\"",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run check",
"generate:rules": "esno ./scripts/generate-rule-files.ts",
"generate": "node ./scripts/generate-rule.js"
"generate:rules": "tsx ./scripts/generate-rule-files/cli.ts"
},
"keywords": [
"config",
Expand Down Expand Up @@ -50,6 +50,8 @@
],
"devDependencies": {
"@intlify/eslint-plugin-vue-i18n": "~2.0.0",
"@poppinss/cliui": "~3.0.2",
"@poppinss/dev-utils": "~2.0.3",
"@types/eslint": "~8.4.6",
"@types/json-schema": "~7.0.11",
"@types/node": "~18.7.23",
Expand All @@ -71,15 +73,22 @@
"eslint-plugin-unicorn": "~44.0.0",
"eslint-plugin-vue": "~9.5.1",
"eslint-plugin-vue-pug": "~0.5.4",
"esno": "0.16.3",
"json-schema": "~0.4.0",
"json-schema-to-typescript": "~11.0.2",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "~3.1.1",
"ts-dedent": "~2.2.0",
"tsx": "~3.9.0",
"typescript": "~4.8.4",
"upper-case-first": "~2.0.2",
"vitest": "~0.23.4",
"vue-eslint-parser": "~9.1.0"
},
"pnpm": {
"overrides": {
"@poppinss/colors": "poppinss/colors#fix/typing-nbuild"
}
},
Julien-R44 marked this conversation as resolved.
Show resolved Hide resolved
"packageManager": "pnpm@7.12.2",
"engines": {
"node": ">= 14.6.0",
Expand Down
Loading