Skip to content

Commit c02d8cc

Browse files
committed
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.
1 parent a94829c commit c02d8cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"lint": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts",
1111
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts --fix",
1212
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force",
13-
"version": "cd runner && npm version patch && git add ."
13+
"version": "cd runner && npm version patch && cd .. && npm run removeNPMAbsolutePaths && git add runner"
1414
},
1515
"ava": {
1616
"typescript": {

0 commit comments

Comments
 (0)