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 fed4ede
Show file tree
Hide file tree
Showing 2 changed files with 200 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.

10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@
],
"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"
},
"private": true,
"dependencies": {
Expand Down Expand Up @@ -75,6 +82,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

0 comments on commit fed4ede

Please sign in to comment.