Skip to content

Commit

Permalink
MAINTENANCE suppress the warning in the test scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
hepabolu committed Oct 3, 2024
1 parent 11e73a8 commit 2cb968d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
"scripts": {
"docs": "docDir='./dist/docs'; [[ -e \"$docDir\" ]] && rm -rf \"$docDir/\"*; npx jsdoc -c ./jsdoc.conf.json --destination \"$docDir/\" --template node_modules/docdash",
"docs-dev": "docDir='./dist/docs'; [[ -e \"$docDir\" ]] && rm -rf \"$docDir/\"*; npx jsdoc -c ./jsdoc.conf.json --destination \"$docDir/\" --private --template node_modules/docdash",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"cov": "NODE_OPTIONS=--experimental-vm-modules npx jest --coverage=true",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest",
"cov": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 npx jest --coverage=true",
"watch": "webpack --watch",
"start": "webpack serve --open",
"build": "webpack --config webpack.config.mjs --color"
Expand Down

0 comments on commit 2cb968d

Please sign in to comment.