Skip to content

Commit

Permalink
Added --experimental-vm-modules for testing to remove warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexPshul committed Nov 7, 2024
1 parent 6e39374 commit 5b20337
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
20 changes: 20 additions & 0 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"start": "nx serve",
"build": "nx build",
"build:all": "nx run-many --target=build --all",
"test": "nx test",
"test:all": "nx run-many --target=test --all",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" nx test",
"test:all": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" nx run-many --target=test --all",
"e2e:all": "nx run-many --target=e2e --all",
"prepare": "is-ci || husky",
"lint-staged": "lint-staged"
Expand All @@ -28,6 +28,7 @@
"@types/node": "^20.14.8",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"cross-env": "^7.0.3",
"eslint": "9.11.0",
"eslint-config-prettier": "9.1.0",
"husky": "^9.1.6",
Expand Down

0 comments on commit 5b20337

Please sign in to comment.