Skip to content

Commit

Permalink
chore(babel): use babel instead of babili
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Oct 19, 2016
1 parent 1e20bd4 commit c4a5838
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"presets": [
"babili"
]
}
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,16 @@
"build": "npm run build-es && npm run build-cjs",
"build-min": "npm run build-es-min && npm run build-cjs-min",
"build-es": "rollup -c",
"build-es-min": "babili .dist/main-es.js > .dist/main-es.min.js",
"build-es-min": "babel .dist/main-es.js > .dist/main-es.min.js",
"build-cjs": "browserify src/main.js > .dist/main-cjs.js",
"build-cjs-min": "babili .dist/main-cjs.js > .dist/main-cjs.min.js"
"build-cjs-min": "babel .dist/main-cjs.js > .dist/main-cjs.min.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"ava": "^0.16.0",
"babili": "0.0.7",
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"benchmark": "^2.1.1",
"browserify": "^13.1.0",
"coveralls": "^2.11.14",
Expand Down

0 comments on commit c4a5838

Please sign in to comment.