Skip to content

Commit

Permalink
fix(build): fail gracefully when ensuring lib dir
Browse files Browse the repository at this point in the history
  • Loading branch information
sQVe committed Apr 11, 2019
1 parent 6e71e12 commit b4e8654
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 @@ -16,7 +16,7 @@
"build": "npm run clean && npm run build:snippets && npm run move:snippets && npm run build:cjs",
"build:cjs": "BUILD_BUNDLE=cjs rollup -c",
"build:snippets": "BUILD_BUNDLE=snippets rollup -c && node tmp/parser.js",
"move:snippets": "mkdir lib && mv tmp/snippets.json lib/",
"move:snippets": "mkdir -p lib && mv tmp/snippets.json lib/",
"clean": "rm -rf {lib,tmp}",
"format": "prettier-eslint --write '{**/*,*}.{js,json,jsx,md,yaml}'",
"format:check": "prettier-eslint --list-different '{**/*,*}.{js,json,jsx,md,yaml}'",
Expand Down

0 comments on commit b4e8654

Please sign in to comment.