Skip to content

Commit

Permalink
chore: use the new syntax for affected commands
Browse files Browse the repository at this point in the history
  • Loading branch information
tinesoft committed Dec 12, 2023
1 parent f3449ea commit 4c72268
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"test": "nx run-many --target test --parallel 4 --exclude smoke --runInBand",
"e2e": "ts-node -P ./tools/tsconfig.tools.json ./tools/scripts/run-all-e2e-tests.ts",
"lint": "nx run-many --target=lint --fix --parallel 4 --exclude smoke",
"affected:build": "nx affected:build --exclude=smoke",
"affected:e2e": "nx affected:e2e --exclude=smoke",
"affected:test": "nx affected:test --exclude=smoke --runInBand",
"affected:lint": "nx affected:lint",
"affected:graph": "nx affected:graph",
"affected:build": "nx affected --target build --exclude=smoke",
"affected:e2e": "nx affected --target e2e --exclude=smoke",
"affected:test": "nx affected --target test --exclude=smoke --runInBand",
"affected:lint": "nx affected --target lint",
"affected:graph": "nx affected --graph",
"format": "nx format:write",
"format:write": "nx format:write",
"format:check": "nx format:check",
Expand Down

0 comments on commit 4c72268

Please sign in to comment.