Browse Source

Merge pull request #230 from rollup/0.20.1

Release 0.20.1
better-aggressive
Rich Harris 10 years ago
parent
commit
ccf7bb7e47
  1. 6
      CHANGELOG.md
  2. 11
      package.json

6
CHANGELOG.md

@ -1,5 +1,11 @@
# rollup changelog # rollup changelog
## 0.20.1
* Support `--config` file to enable plugins with CLI ([#226](https://github.com/rollup/rollup/pulls/226))
* Prevent `default` being used as variable name ([#215](https://github.com/rollup/rollup/issues/215))
* Update deps
## 0.20.0 ## 0.20.0
* Support for [plugins](https://github.com/rollup/rollup/wiki/Plugins) ([#207](https://github.com/rollup/rollup/pulls/207)) * Support for [plugins](https://github.com/rollup/rollup/wiki/Plugins) ([#207](https://github.com/rollup/rollup/pulls/207))

11
package.json

@ -1,6 +1,6 @@
{ {
"name": "rollup", "name": "rollup",
"version": "0.20.0", "version": "0.20.1",
"description": "Next-generation ES6 module bundler", "description": "Next-generation ES6 module bundler",
"main": "dist/rollup.js", "main": "dist/rollup.js",
"jsnext:main": "src/rollup.js", "jsnext:main": "src/rollup.js",
@ -40,7 +40,7 @@
"homepage": "https://github.com/rollup/rollup", "homepage": "https://github.com/rollup/rollup",
"devDependencies": { "devDependencies": {
"acorn": "^2.3.0", "acorn": "^2.3.0",
"babel-core": "^5.8.25", "babel-core": "^5.8.29",
"codecov.io": "^0.1.6", "codecov.io": "^0.1.6",
"console-group": "^0.1.2", "console-group": "^0.1.2",
"es6-promise": "^3.0.2", "es6-promise": "^3.0.2",
@ -57,14 +57,13 @@
"remap-istanbul": "^0.3.1", "remap-istanbul": "^0.3.1",
"rollup-plugin-replace": "^1.0.1", "rollup-plugin-replace": "^1.0.1",
"sander": "^0.4.0", "sander": "^0.4.0",
"source-map": "^0.5.1" "source-map": "^0.5.3",
"sourcemap-codec": "^1.2.1"
}, },
"dependencies": { "dependencies": {
"chalk": "^1.1.1", "chalk": "^1.1.1",
"minimist": "^1.2.0", "minimist": "^1.2.0",
"source-map-support": "^0.3.2", "source-map-support": "^0.3.2"
"sourcemap-codec": "^1.2.1",
"vlq": "^0.2.1"
}, },
"files": [ "files": [
"src", "src",

Loading…
Cancel
Save