rollup-plugin-babel
Advanced tools
Comparing version 2.0.0 to 2.0.1
# rollup-plugin-babel changelog | ||
## 2.0.1 | ||
* Use object-assign ponyfill | ||
* Add travis support | ||
* Fix test | ||
## 2.0.0 | ||
@@ -4,0 +10,0 @@ |
var path = require( 'path' ); | ||
var babel = require( 'babel-core' ); | ||
var createFilter = require( 'rollup-pluginutils' ).createFilter; | ||
var assign = require( 'object-assign' ); | ||
var assign = Object.assign || function ( target, source ) { | ||
Object.keys( source ).forEach( function ( key ) { | ||
target[ key ] = source[ key ]; | ||
}); | ||
return target; | ||
}; | ||
module.exports = function ( options ) { | ||
@@ -14,0 +7,0 @@ options = assign( {}, options || {} ); |
{ | ||
"name": "rollup-plugin-babel", | ||
"version": "2.0.0", | ||
"devDependencies": { | ||
"eslint": "^1.7.2", | ||
"mocha": "^2.3.3", | ||
"rollup": "^0.20.0" | ||
}, | ||
"version": "2.0.1", | ||
"description": "Seamless integration between Rollup and Babel.", | ||
"keywords": [ | ||
"rollup-plugin", | ||
"babel", | ||
"es2015", | ||
"es6" | ||
], | ||
"homepage": "https://github.com/rollup/rollup-plugin-babel", | ||
"author": "Rich Harris", | ||
"contributors": [ | ||
"Bogdan Chadkin <trysound@yandex.ru>" | ||
], | ||
"scripts": { | ||
@@ -15,4 +22,18 @@ "test": "mocha", | ||
"babel-core": "6", | ||
"object-assign": "^4.0.1", | ||
"rollup-pluginutils": "^1.1.0" | ||
}, | ||
"devDependencies": { | ||
"babel-preset-es2015-rollup": "^1.0.0", | ||
"eslint": "^1.7.2", | ||
"mocha": "^2.3.3", | ||
"rollup": "^0.20.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/rollup/rollup-plugin-babel.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/rollup/rollup-plugin-babel/issues" | ||
} | ||
} |
@@ -16,7 +16,4 @@ var assert = require( 'assert' ); | ||
}).then( function ( bundle ) { | ||
console.log( 'bundled in %s ms', Date.now() - start ); | ||
start = Date.now(); | ||
const generated = bundle.generate(); | ||
console.log( 'generated in %s ms', Date.now() - start ); | ||
@@ -23,0 +20,0 @@ const code = generated.code; |
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
7936
13
0
0
0
3
4
100
+ Addedobject-assign@^4.0.1
+ Addedobject-assign@4.1.1(transitive)