Browse Source

-> 0.8.0

contingency-plan v0.8.0
Rich Harris 10 years ago
parent
commit
0c4d139655
  1. 5
      CHANGELOG.md
  2. 7
      gobblefile.js
  3. 4
      package.json

5
CHANGELOG.md

@ -1,5 +1,10 @@
# rollup changelog # rollup changelog
## 0.8.0
* Top-level variable declarations with multiple declarators are split up, to avoid unnecessary code importing and incorrectly-ordered statements ([#26](https://github.com/rollup/rollup/issues/26))
* `this` at the top level is `undefined` ([#28](https://github.com/rollup/rollup/issues/28))
## 0.7.8 ## 0.7.8
* Avoid using `path.parse` - unsupported in node 0.10 * Avoid using `path.parse` - unsupported in node 0.10

7
gobblefile.js

@ -1,13 +1,14 @@
var gobble = require( 'gobble' ); var gobble = require( 'gobble' );
var selfhost = 0; var selfhost = 1;
module.exports = selfhost ? module.exports = selfhost ?
gobble( 'src' ) gobble( 'src' )
.transform( 'babel' ) .transform( 'babel' )
.transform( 'rollup', { .transform( 'rollup', {
entry: 'rollup', entry: 'rollup.js',
format: 'cjs' format: 'cjs',
external: [ 'sander', 'path', 'acorn', 'magic-string' ]
}) : }) :
gobble( 'src' ) gobble( 'src' )

4
package.json

@ -34,10 +34,10 @@
"babel-core": "^5.4.4", "babel-core": "^5.4.4",
"console-group": "^0.1.2", "console-group": "^0.1.2",
"gobble": "^0.10.1", "gobble": "^0.10.1",
"gobble-babel": "^5.1.0", "gobble-babel": "^5.5.8",
"gobble-cli": "^0.4.2", "gobble-cli": "^0.4.2",
"gobble-esperanto-bundle": "^0.2.0", "gobble-esperanto-bundle": "^0.2.0",
"gobble-rollup": "^0.2.0", "gobble-rollup": "^0.3.1",
"mocha": "^2.2.4", "mocha": "^2.2.4",
"source-map": "^0.1.40" "source-map": "^0.1.40"
}, },

Loading…
Cancel
Save