Fix EOF newlines after npm version patch

The removeNPMAbsolutePaths check requires no newlines at the
end of the file. This ensures that the version update mimics
the behavior.
This commit is contained in:
Andrew Eisenberg 2021-05-31 10:26:28 -07:00
parent a94829cc53
commit c02d8cc7a9

View file

@ -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": {