Browse Source

-> 0.5.0

contingency-plan v0.5.0
Rich-Harris 10 years ago
parent
commit
d30c00b8fc
  1. 6
      CHANGELOG.md
  2. 12
      package.json

6
CHANGELOG.md

@ -1,5 +1,11 @@
# rollup changelog # rollup changelog
## 0.5.0
* Command line interface
* Sourcemap generation
* Correct behaviour with `export { x as y } from 'z'`
## 0.4.1 ## 0.4.1
* More import name deconflicting * More import name deconflicting

12
package.json

@ -1,9 +1,12 @@
{ {
"name": "rollup", "name": "rollup",
"version": "0.4.1", "version": "0.5.0",
"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",
"bin": {
"rollup": "./bin/index.js"
},
"scripts": { "scripts": {
"test": "mocha", "test": "mocha",
"pretest": "npm run build", "pretest": "npm run build",
@ -36,11 +39,14 @@
"gobble-esperanto-bundle": "^0.2.0", "gobble-esperanto-bundle": "^0.2.0",
"gobble-rollup": "^0.1.1", "gobble-rollup": "^0.1.1",
"mocha": "^2.2.4", "mocha": "^2.2.4",
"source-map-support": "^0.2.10" "source-map-support": "^0.2.10",
"source-map": "^0.1.40"
}, },
"dependencies": { "dependencies": {
"acorn": "^1.1.0", "acorn": "^1.1.0",
"magic-string": "^0.5.1", "chalk": "^1.0.0",
"magic-string": "^0.5.3",
"minimist": "^1.1.1",
"sander": "^0.3.3" "sander": "^0.3.3"
}, },
"files": [ "files": [

Loading…
Cancel
Save