Skip to content

Commit

Permalink
Fix npm run build failure in case there is no ./out folder
Browse files Browse the repository at this point in the history
Signed-off-by: Denis Golovin <[email protected]>
  • Loading branch information
dgolovin committed Nov 15, 2019
1 parent 525d0d4 commit f7936e1
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 @@ -978,7 +978,7 @@
"vscode:prepublish": "npm run build",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"clean": "rm -rf out || rmdir out /s /q",
"clean": "rm -rf out || rmdir out /s /q || echo 'no out folder, ignoring errors'",
"test": "npm run clean && npm run compile && npm run verify && node ./out/build/unit-tests.js",
"update-deps": "node_modules/.bin/ncu --upgrade --loglevel verbose --packageFile package.json && npm update",
"coverage:upload": "codecov -f coverage/coverage-final.json",
Expand Down

0 comments on commit f7936e1

Please sign in to comment.