Skip to content

Commit

Permalink
chore: clean dist-spec in clean script
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jul 23, 2021
1 parent 5d9f8b1 commit fd0c7b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ package-lock.json
CHANGELOG.md
dist/
lib/
dist-spec/
stats.html
templates/
spec/fixtures/r.tmbundle/
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,9 @@
"lint": "coffeelint src spec && eslint . --fix",
"test.lint": "eslint .",
"check-version": "node script/check-version.js",
"clean:bin": "shx rm -rf bin/node_darwin_x64 bin/node.exe bin/node",
"clean:lib": "shx rm -rf lib && shx mkdir -p lib",
"clean": "npm run clean:lib && npm run clean:bin",
"clean": "shx rm -rf dist-spec/ lib/ bin/node_darwin_x64 bin/node.exe bin/node && shx mkdir -p lib",
"coffee": "coffee --compile --output lib src",
"build": "npm run clean:lib && npm run coffee",
"build": "npm run clean && npm run coffee",
"prepare": "npm run build",
"postinstall": "node script/postinstall.js",
"get.fixtures": "node ./script/get-fixtures.js && shx cp -r ./spec/fixtures/r.tmbundle-patch/Snippets/ ./spec/fixtures/r.tmbundle/",
Expand Down

0 comments on commit fd0c7b3

Please sign in to comment.