Skip to content

Commit

Permalink
update .babelrc
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid committed Oct 13, 2015
1 parent dda1b45 commit 652cb66
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{
"optional": ["runtime"],
"sourceMaps": "inline",
"stage": 0
}
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
before_script:
- cp test/config/bitcoind.json.travis test/config/bitcoind.json
- mkdir -p ~/.bitcoin
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"scripts": {
"prepublish": "npm run clean && npm run compile",
"clean": "rm -f lib/*",
"compile": "mkdir -p lib && babel src -d lib --optional runtime -s true",
"compile:watch": "mkdir -p lib && babel src -d lib --optional runtime -s true -w",
"compile": "mkdir -p lib && babel src -d lib",
"compile:watch": "mkdir -p lib && babel src -d lib -w",
"coverage": "istanbul cover _mocha -- --compilers js:babel/register test/*.js",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "eslint src test",
Expand Down

0 comments on commit 652cb66

Please sign in to comment.