Skip to content

Commit

Permalink
Don't error on build if dist/ doesn't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
aomarks committed Jul 26, 2019
1 parent 7f69db1 commit 0727138
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 @@ -23,7 +23,7 @@
"test": "npm run lint && npm run build && easy-sauce",
"format": "clang-format --style=file -i src/*.ts",
"prepack": "npm run build",
"build": "rm dist/* && tsc && rollup -c && rm dist/document-global.*"
"build": "rm dist/* -f && tsc && rollup -c && rm dist/document-global.*"
},
"devDependencies": {
"@babel/core": "^7.5.5",
Expand Down

0 comments on commit 0727138

Please sign in to comment.