chore: pass flags correctly

This commit is contained in:
Liam DeBeasi
2023-11-03 11:53:44 -04:00
parent 647320dd4b
commit d852ee5b72
7 changed files with 30 additions and 30 deletions

View File

@@ -28,12 +28,12 @@
"build.core": "node scripts/build-core.js",
"build.link": "pnpm run build && node scripts/link-copy.js",
"build.ng": "ng-packagr -p ng-package.json -c tsconfig.json",
"build.watch": "pnpm run build.ng -- --watch",
"build.watch": "pnpm run build.ng --watch",
"clean": "node scripts/clean.js",
"clean-generated": "node ./scripts/clean-generated.js",
"lint": "pnpm run eslint && pnpm run prettier -- --write --cache",
"lint.fix": "pnpm run eslint -- --fix",
"fmt": "pnpm run eslint -- --fix && pnpm run prettier -- --write --cache",
"lint": "pnpm run eslint && pnpm run prettier --write --cache",
"lint.fix": "pnpm run eslint --fix",
"fmt": "pnpm run eslint --fix && pnpm run prettier --write --cache",
"prettier": "prettier \"**/*.ts\"",
"eslint": "eslint . --ext .ts",
"prerelease": "pnpm run validate && np prerelease --yolo --any-branch --tag next",