Stashing this to go back to harmonizing package.json

This commit is contained in:
Ken Sternberg 2024-01-05 12:15:35 -08:00
parent 54aae94143
commit cc31b078d3
2 changed files with 6 additions and 4 deletions

View File

@ -4,15 +4,14 @@ module.exports = {
"lint": [], "lint": [],
"tsc": [], "tsc": [],
"lit-analyse": [], "lit-analyse": [],
"watch": [],
"lint:precommit": [], "lint:precommit": [],
"lint:spelling": [], "lint:spelling": [],
"precommit-all": ["tsc", "lit-analyse", "lint:precommit", "lint:spelling", "prettier"], "precommit-all": ["tsc", "lit-analyse", "lint:precommit", "lint:spelling", "prettier"],
"build-locales": ["^build-locales"], "build-locales": ["^build-locales"],
"extract-locales": ["^extract-locales"], "extract-locales": ["^extract-locales"],
"watch": ["authentik#watch"],
"web-fix": ["^web-lint-fix", "^web-lint", "^web-check-compile", "^web-i18n-extract"], "web-fix": ["^web-lint-fix", "^web-lint", "^web-check-compile", "^web-i18n-extract"],
"prettier": ["^prettier"], "prettier": ["^prettier"],
"watch-main": ["watch"],
}, },
}; };

View File

@ -7,9 +7,12 @@
"build": "lage build", "build": "lage build",
"lint": "lage lint", "lint": "lage lint",
"localize": "lage localize", "localize": "lage localize",
"lit-analyse": "lage lit-analyse",
"web-fix": "lage web-fix", "web-fix": "lage web-fix",
"prettier": "lage prettier", "prettier": "lage prettier",
"precommit": "lage precommit-all" "precommit": "lage precommit-all",
"storybook": "lage storybook",
"watch": "lage watch-main"
}, },
"optionalDependencies": { "optionalDependencies": {
"@esbuild/darwin-arm64": "^0.19.10", "@esbuild/darwin-arm64": "^0.19.10",