@ -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))
@ -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",
@ -8,7 +8,6 @@ var cachedModules = {
module.exports = {
description: 'applies custom resolver to entry point',
//solo: true,
options: {
plugins: [{
resolveId: function ( importee, importer ) {
@ -5,5 +5,4 @@ module.exports = {
exports: function ( exports ) {
assert.equal( exports.bar, 42 );
}
// solo: true
};
assert.equal( exports(), 42 );
@ -3,6 +3,6 @@ var assert = require( 'assert' );
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 ) );
@ -2,7 +2,6 @@ var assert = require( 'assert' );
var path = require( 'path' );
solo: true,
description: 'throws error if module is not found',
assert.equal( err.message, 'Could not resolve \'./mod\' from ' + path.resolve( __dirname, 'main.js' ) );