Skip to content

Commit

Permalink
chore: add nx script shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyperkid123 committed Dec 1, 2023
1 parent 5c9bb93 commit 59d7dc8
Show file tree
Hide file tree
Showing 3 changed files with 202 additions and 8 deletions.
198 changes: 191 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@
],
"scripts": {
"nx": "nx",
"prepare": "husky install"
"prepare": "husky install",
"dev": "nx run test-app:serve",
"test:unit": "nx run-many -t test",
"test:unit:affected": "nx affected -t test",
"test:e2e": "nx run test-app-e2e:e2e",
"test": "npm-run-all --parallel test:*",
"build": "nx run-many -t build",
"lint": "nx run-many -t lint",
"version": "nx run-many -t version --dryRun"
},
"private": true,
"dependencies": {
Expand Down Expand Up @@ -75,6 +83,7 @@
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"ngx-deploy-npm": "^7.1.0",
"npm-run-all": "^4.1.5",
"nx": "17.1.3",
"prettier": "^3.1.0",
"react-refresh": "^0.10.0",
Expand Down
1 change: 1 addition & 0 deletions packages/react-test-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Changelog

0 comments on commit 59d7dc8

Please sign in to comment.