chore: update lint npm scripts

This commit is contained in:
cedoor
2023-01-17 13:00:02 +01:00
parent bec66a5453
commit 83cf649df9
2 changed files with 3 additions and 2 deletions

View File

@@ -38,7 +38,7 @@ jobs:
run: yarn prettier
- name: Run Eslint
run: yarn lint
run: yarn lint:all
- name: Build applications
run: yarn build:all

View File

@@ -5,10 +5,11 @@
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"lint": "nx lint",
"start:all": "nx run-many --target=serve --all",
"build:all": "nx run-many --target=build --all",
"lint:all": "nx run-many --target=lint --all",
"test:all": "nx run-many --target=test --all --coverage",
"lint": "nx affected:lint --files *",
"prettier": "prettier -c .",
"prettier:write": "prettier -w .",
"commit": "cz",