Skip to content

Commit

Permalink
Add browser builds targeting es5 envs
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist authored and adrianheine committed Feb 4, 2018
1 parent 84d5696 commit 65891a8
Show file tree
Hide file tree
Showing 5 changed files with 121 additions and 207 deletions.
2 changes: 1 addition & 1 deletion bin/runBuble.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var fs = require('fs');
var path = require('path');
var buble = require('../dist/buble.deps.js');
var buble = require('..');
var handleError = require('./handleError.js');
var EOL = require('os').EOL;

Expand Down
220 changes: 58 additions & 162 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@
"name": "buble",
"version": "0.18.0",
"description": "The blazing fast, batteries-included ES2015 compiler",
"main": "dist/buble.umd.js",
"main": "dist/buble.cjs.js",
"module": "dist/buble.es.js",
"browser": "dist/buble.deps.js",
"browser": {
"dist/buble.cjs.js": "dist/buble-browser.cjs.js",
"dist/buble.es.js": "dist/buble-browser.es.js"
},
"unpkg": "dist/buble-browser-deps.umd.js",
"files": [
"bin",
"src",
Expand Down Expand Up @@ -51,9 +55,9 @@
"rimraf": "^2.5.2",
"rollup": "^0.55.3",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"source-map": "^0.6.1",
"source-map-support": "^0.5.0"
},
Expand Down
Loading

0 comments on commit 65891a8

Please sign in to comment.