From 23f89abf324969d03f420654a1f12f5091586081 Mon Sep 17 00:00:00 2001 From: Chadkin Date: Mon, 1 Aug 2016 15:49:38 +0300 Subject: [PATCH] -> v0.34.2 --- CHANGELOG.md | 5 +++++ package.json | 2 +- test/function/custom-path-resolver-on-entry/_config.js | 1 - test/function/default-export-is-not-bound-b/_config.js | 1 - test/function/newline-after-comment/_config.js | 1 - test/function/no-relative-external/_config.js | 2 +- test/function/throws-not-found-module/_config.js | 1 - 7 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 163d0e2..baca6a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # rollup changelog +## 0.34.2 + +* resolveId calls are cached now to improve incremental build +* Fixed error message recursion in plugins + ## 0.34.1 * Support `paths` config ([#754](https://github.com/rollup/rollup/issues/754)) diff --git a/package.json b/package.json index 9f9b6f6..d9dfd35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rollup", - "version": "0.34.1", + "version": "0.34.2", "description": "Next-generation ES6 module bundler", "main": "dist/rollup.js", "jsnext:main": "dist/rollup.es.js", diff --git a/test/function/custom-path-resolver-on-entry/_config.js b/test/function/custom-path-resolver-on-entry/_config.js index 0766b6c..b41282b 100644 --- a/test/function/custom-path-resolver-on-entry/_config.js +++ b/test/function/custom-path-resolver-on-entry/_config.js @@ -8,7 +8,6 @@ var cachedModules = { module.exports = { description: 'applies custom resolver to entry point', - //solo: true, options: { plugins: [{ resolveId: function ( importee, importer ) { diff --git a/test/function/default-export-is-not-bound-b/_config.js b/test/function/default-export-is-not-bound-b/_config.js index 7527035..a1aed25 100644 --- a/test/function/default-export-is-not-bound-b/_config.js +++ b/test/function/default-export-is-not-bound-b/_config.js @@ -5,5 +5,4 @@ module.exports = { exports: function ( exports ) { assert.equal( exports.bar, 42 ); } - // solo: true }; diff --git a/test/function/newline-after-comment/_config.js b/test/function/newline-after-comment/_config.js index d28ead5..85191d6 100644 --- a/test/function/newline-after-comment/_config.js +++ b/test/function/newline-after-comment/_config.js @@ -5,5 +5,4 @@ module.exports = { exports: function ( exports ) { assert.equal( exports(), 42 ); } - // solo: true }; diff --git a/test/function/no-relative-external/_config.js b/test/function/no-relative-external/_config.js index 37f86df..b5c37e0 100644 --- a/test/function/no-relative-external/_config.js +++ b/test/function/no-relative-external/_config.js @@ -3,6 +3,6 @@ var assert = require( 'assert' ); module.exports = { description: 'missing relative imports are an error, not a warning', 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 ) ); } }; diff --git a/test/function/throws-not-found-module/_config.js b/test/function/throws-not-found-module/_config.js index 9030995..04963a3 100644 --- a/test/function/throws-not-found-module/_config.js +++ b/test/function/throws-not-found-module/_config.js @@ -2,7 +2,6 @@ var assert = require( 'assert' ); var path = require( 'path' ); module.exports = { - solo: true, description: 'throws error if module is not found', error: function ( err ) { assert.equal( err.message, 'Could not resolve \'./mod\' from ' + path.resolve( __dirname, 'main.js' ) );