refactor(angular, angular-server): add watch commands

This commit is contained in:
Liam DeBeasi
2023-11-02 17:20:47 -04:00
parent 6e3fd70bf0
commit 8dffb5fc3b
2 changed files with 2 additions and 0 deletions

View File

@ -27,6 +27,7 @@
"test": "echo 'angular no tests yet'",
"build": "ng-packagr -p ng-package.json -c tsconfig.json",
"build.prod": "npm run clean && npm run build",
"build.watch": "npm run build -- --watch",
"clean": "rm -rf ./dist",
"lint": "eslint . --ext .ts && npm run prettier",
"lint.fix": "eslint . --ext .ts --fix && npm run prettier.fix",

View File

@ -28,6 +28,7 @@
"build.core": "node scripts/build-core.js",
"build.link": "npm run build && node scripts/link-copy.js",
"build.ng": "ng-packagr -p ng-package.json -c tsconfig.json",
"build.watch": "npm run build.ng -- --watch",
"clean": "node scripts/clean.js",
"clean-generated": "node ./scripts/clean-generated.js",
"lint": "npm run eslint && npm run prettier -- --write --cache",