Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@
"ng": "ng",
"start": "nx serve",
"build": "nx build --configuration production",
"build:all": "nx run-many --target=build",
"build:all": "nx run-many --target=build --parallel",
"test": "nx test --code-coverage",
"test:watch": "nx test --watch",
"test:all": "nx run-many --target=test --code-coverage",
"test:affected": "npx nx affected --target=test --fix --base=origin/master --parallel",
"lint": "nx lint",
"lint:all": "nx run-many --target=lint --fix",
"lint:affected": "npx nx affected --target=lint --fix --base=origin/master --parallel",
"lint:all": "nx run-many --target=lint --fix --parallel",
"docs:add-page": "npx nx g @ng-doc/builder:page '$name' --path apps/docs/src/app/pages",
"docs:add-category": "npx nx g @ng-doc/builder:category '$name' --path apps/docs/src/app/categories",
"clean": "npm run clean:docs && npm run clean:libs && npm run clean:build",
Expand Down