Browse Source

-> v0.34.2

semi-dynamic-namespace-imports v0.34.2
Chadkin 8 years ago
parent
commit
23f89abf32
  1. 5
      CHANGELOG.md
  2. 2
      package.json
  3. 1
      test/function/custom-path-resolver-on-entry/_config.js
  4. 1
      test/function/default-export-is-not-bound-b/_config.js
  5. 1
      test/function/newline-after-comment/_config.js
  6. 2
      test/function/no-relative-external/_config.js
  7. 1
      test/function/throws-not-found-module/_config.js

5
CHANGELOG.md

@ -1,5 +1,10 @@
# rollup changelog # rollup changelog
## 0.34.2
* resolveId calls are cached now to improve incremental build
* Fixed error message recursion in plugins
## 0.34.1 ## 0.34.1
* Support `paths` config ([#754](https://github.com/rollup/rollup/issues/754)) * Support `paths` config ([#754](https://github.com/rollup/rollup/issues/754))

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "rollup", "name": "rollup",
"version": "0.34.1", "version": "0.34.2",
"description": "Next-generation ES6 module bundler", "description": "Next-generation ES6 module bundler",
"main": "dist/rollup.js", "main": "dist/rollup.js",
"jsnext:main": "dist/rollup.es.js", "jsnext:main": "dist/rollup.es.js",

1
test/function/custom-path-resolver-on-entry/_config.js

@ -8,7 +8,6 @@ var cachedModules = {
module.exports = { module.exports = {
description: 'applies custom resolver to entry point', description: 'applies custom resolver to entry point',
//solo: true,
options: { options: {
plugins: [{ plugins: [{
resolveId: function ( importee, importer ) { resolveId: function ( importee, importer ) {

1
test/function/default-export-is-not-bound-b/_config.js

@ -5,5 +5,4 @@ module.exports = {
exports: function ( exports ) { exports: function ( exports ) {
assert.equal( exports.bar, 42 ); assert.equal( exports.bar, 42 );
} }
// solo: true
}; };

1
test/function/newline-after-comment/_config.js

@ -5,5 +5,4 @@ module.exports = {
exports: function ( exports ) { exports: function ( exports ) {
assert.equal( exports(), 42 ); assert.equal( exports(), 42 );
} }
// solo: true
}; };

2
test/function/no-relative-external/_config.js

@ -3,6 +3,6 @@ var assert = require( 'assert' );
module.exports = { module.exports = {
description: 'missing relative imports are an error, not a warning', description: 'missing relative imports are an error, not a warning',
error: function ( err ) { error: function ( err ) {
assert.ok( /Could not resolve \.\/missing\.js from/.test( err.message ) ); assert.ok( /Could not resolve '\.\/missing\.js' from/.test( err.message ) );
} }
}; };

1
test/function/throws-not-found-module/_config.js

@ -2,7 +2,6 @@ var assert = require( 'assert' );
var path = require( 'path' ); var path = require( 'path' );
module.exports = { module.exports = {
solo: true,
description: 'throws error if module is not found', description: 'throws error if module is not found',
error: function ( err ) { error: function ( err ) {
assert.equal( err.message, 'Could not resolve \'./mod\' from ' + path.resolve( __dirname, 'main.js' ) ); assert.equal( err.message, 'Could not resolve \'./mod\' from ' + path.resolve( __dirname, 'main.js' ) );

Loading…
Cancel
Save