Skip to content

Commit

Permalink
Stop excluding generated file dist/index.js from diff check in npm te…
Browse files Browse the repository at this point in the history
…st script because CI runs without an updated index.js are not meaningful.
  • Loading branch information
DavidAnson committed Nov 21, 2023
1 parent 404090a commit 4670aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"docker-npm-install": "docker run --rm --tty --name npm-install --volume $PWD:/home/workdir --workdir /home/workdir --user node node:16 npm install",
"docker-npm-run-upgrade": "docker run --rm --tty --name npm-run-upgrade --volume $PWD:/home/workdir --workdir /home/workdir --user node node:16 npm run upgrade",
"lint": "eslint *.js && markdownlint-cli2 *.md",
"test": "npm run lint && npm run build && git diff --exit-code ':(exclude)dist/index.js'",
"test": "npm run lint && npm run build && git diff --exit-code",
"upgrade": "npx --yes npm-check-updates --upgrade"
},
"dependencies": {
Expand Down

0 comments on commit 4670aba

Please sign in to comment.