Skip to content

Commit

Permalink
test: allowing other NODE_OPTIONS in test for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
hanseltime committed Oct 1, 2023
1 parent 4968fb6 commit 295951f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
".": "./lib/multiSemanticRelease.js",
"./*": "./*"
},
"bin": {
"multi-semantic-release": "./bin/cli.js"
},
"bin": "./bin/cli.js",
"files": [
"README.md",
"CHANGELOG.md",
Expand All @@ -26,7 +24,7 @@
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"test": "yarn lint && yarn test:unit",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules ./node_modules/.bin/jest --coverage",
"test:unit": "NODE_OPTIONS=\"${NODE_OPTIONS} --experimental-vm-modules\" ./node_modules/.bin/jest --coverage",
"build": "echo 'There is no need for build' && exit 0",
"postupdate": "yarn && npx yarn-audit-fix && yarn build && yarn test",
"publish:beta": "npm publish --no-git-tag-version --tag beta"
Expand Down

0 comments on commit 295951f

Please sign in to comment.