Skip to content

Commit

Permalink
chore(build): Fix babel command
Browse files Browse the repository at this point in the history
Pass src directory directly instead of a single file
  • Loading branch information
jcollado committed Feb 2, 2016
1 parent 6a888ef commit 1c21941
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 @@ -3,7 +3,7 @@
"description": "Turn a callback-style function into a function that returns a promise",
"main": "dist/index.js",
"scripts": {
"build": "babel -d dist src/index.js",
"build": "babel -d dist src",
"cover": "istanbul cover _mocha -- test.js",
"coveralls": "istanbul cover --report lcovonly _mocha -- test.js && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "standard",
Expand Down

0 comments on commit 1c21941

Please sign in to comment.