Skip to content

Commit

Permalink
Fix EOF newlines after npm version patch
Browse files Browse the repository at this point in the history
The removeNPMAbsolutePaths check requires no newlines at the
end of the file. This ensures that the version update mimics
the behavior.
  • Loading branch information
Andrew Eisenberg committed May 31, 2021
1 parent a94829c commit c02d8cc
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 @@ -10,7 +10,7 @@
"lint": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts",
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts --fix",
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force",
"version": "cd runner && npm version patch && git add ."
"version": "cd runner && npm version patch && cd .. && npm run removeNPMAbsolutePaths && git add runner"
},
"ava": {
"typescript": {
Expand Down

0 comments on commit c02d8cc

Please sign in to comment.