Skip to content

Commit

Permalink
Simplify path so that e.g. 'npm run build' can find it more easily
Browse files Browse the repository at this point in the history
What was previously explicit is the default, and gets past the error.
  • Loading branch information
wbt committed Jan 10, 2022
1 parent 754ca4e commit 5f38299
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 @@ -61,7 +61,7 @@
"pretest": "npm run lint",
"test": "nyc --reporter=text --reporter lcov npm run test:mocha",
"test:mocha": "mocha test/*.test.js test/**/*.test.js --exit",
"build": "./node_modules/.bin/rimraf dist && babel lib -d dist",
"build": "rimraf dist && babel lib -d dist",
"prepublishOnly": "npm run build"
},
"engines": {
Expand Down

0 comments on commit 5f38299

Please sign in to comment.