File tree Expand file tree Collapse file tree 4 files changed +34
-14
lines changed
packages/rollup-plugin-babel Expand file tree Collapse file tree 4 files changed +34
-14
lines changed Original file line number Diff line number Diff line change
1
+ language : node_js
2
+ node_js :
3
+ - ' stable'
4
+ - ' 0.12'
Original file line number Diff line number Diff line change 1
1
# rollup-plugin-babel changelog
2
2
3
+ ## 2.0.1
4
+
5
+ * Use object-assign ponyfill
6
+ * Add travis support
7
+ * Fix test
8
+
3
9
## 2.0.0
4
10
5
11
* Babel 6 compatible
Original file line number Diff line number Diff line change 1
1
var path = require ( 'path' ) ;
2
2
var babel = require ( 'babel-core' ) ;
3
3
var createFilter = require ( 'rollup-pluginutils' ) . createFilter ;
4
-
5
- var assign = Object . assign || function ( target , source ) {
6
- Object . keys ( source ) . forEach ( function ( key ) {
7
- target [ key ] = source [ key ] ;
8
- } ) ;
9
-
10
- return target ;
11
- } ;
4
+ var assign = require ( 'object-assign' ) ;
12
5
13
6
module . exports = function ( options ) {
14
7
options = assign ( { } , options || { } ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " rollup-plugin-babel" ,
3
3
"version" : " 2.0.0" ,
4
- "devDependencies" : {
5
- "eslint" : " ^1.7.2" ,
6
- "mocha" : " ^2.3.3" ,
7
- "rollup" : " ^0.20.0"
8
- },
4
+ "description" : " Seamless integration between Rollup and Babel." ,
5
+ "keywords" : [
6
+ " rollup-plugin" ,
7
+ " babel" ,
8
+ " es2015" ,
9
+ " es6"
10
+ ],
11
+ "homepage" : " https://github.com/rollup/rollup-plugin-babel" ,
12
+ "author" : " Rich Harris" ,
13
+ "contributors" : [
14
+ " Bogdan Chadkin <trysound@yandex.ru>"
15
+ ],
9
16
"scripts" : {
10
17
"test" : " mocha" ,
11
18
"prepublish" : " npm run test"
12
19
},
13
20
"dependencies" : {
14
21
"babel-core" : " 6" ,
22
+ "object-assign" : " ^4.0.1" ,
15
23
"rollup-pluginutils" : " ^1.1.0"
16
24
},
25
+ "devDependencies" : {
26
+ "babel-preset-es2015-rollup" : " ^1.0.0" ,
27
+ "eslint" : " ^1.7.2" ,
28
+ "mocha" : " ^2.3.3" ,
29
+ "rollup" : " ^0.20.0"
30
+ },
17
31
"repository" : {
18
32
"type" : " git" ,
19
- "url" : " https://github.com/rollup/rollup-plugin-babel"
33
+ "url" : " git+https://github.com/rollup/rollup-plugin-babel.git"
34
+ },
35
+ "bugs" : {
36
+ "url" : " https://github.com/rollup/rollup-plugin-babel/issues"
20
37
}
21
38
}
You can’t perform that action at this time.
0 commit comments