This repository was archived by the owner on Jan 6, 2025. It is now read-only.
File tree 3 files changed +10
-16
lines changed
3 files changed +10
-16
lines changed Original file line number Diff line number Diff line change @@ -56,16 +56,10 @@ const makeBundle = (name, options = {}) => {
56
56
...options [ key ] ,
57
57
]
58
58
} else if ( typeof newConf [ key ] === 'object' ) {
59
- value = {
60
- ...newConf [ key ] ,
61
- ...options [ key ] ,
62
- }
59
+ value = Object . assign ( { } , newConf [ key ] , options [ key ] )
63
60
}
64
61
65
- return {
66
- ...newConf ,
67
- [ key ] : value ,
68
- }
62
+ return Object . assign ( { } , newConf , { [ key ] : value } )
69
63
} , config )
70
64
}
71
65
Original file line number Diff line number Diff line change 29
29
"jsdoc" : " ~3.5.5" ,
30
30
"lerna" : " ~2.8.0" ,
31
31
"lodash" : " ~4.17.4" ,
32
- "rollup" : " ~0.54.1 " ,
32
+ "rollup" : " ~0.55.0 " ,
33
33
"rollup-plugin-babel" : " ~3.0.3" ,
34
- "rollup-plugin-commonjs" : " ~8.2.6 " ,
34
+ "rollup-plugin-commonjs" : " ~8.3.0 " ,
35
35
"rollup-plugin-node-resolve" : " ~3.0.2"
36
36
},
37
37
"workspaces" : [
Original file line number Diff line number Diff line change @@ -4625,9 +4625,9 @@ rollup-plugin-babel@~3.0.3:
4625
4625
dependencies :
4626
4626
rollup-pluginutils "^1.5.0"
4627
4627
4628
- rollup-plugin-commonjs@~8.2.6 :
4629
- version "8.2.6 "
4630
- resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.2.6 .tgz#27e5b9069ff94005bb01e01bb46a1e4873784677 "
4628
+ rollup-plugin-commonjs@~8.3.0 :
4629
+ version "8.3.0 "
4630
+ resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-8.3.0 .tgz#91b4ba18f340951e39ed7b1901f377a80ab3f9c3 "
4631
4631
dependencies :
4632
4632
acorn "^5.2.1"
4633
4633
estree-walker "^0.5.0"
@@ -4657,9 +4657,9 @@ rollup-pluginutils@^2.0.1:
4657
4657
estree-walker "^0.3.0"
4658
4658
micromatch "^2.3.11"
4659
4659
4660
- rollup@~0.54.1 :
4661
- version "0.54 .1"
4662
- resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.54 .1.tgz#415a5d999421502646cf54b873fc4ce1a7393970 "
4660
+ rollup@~0.55.0 :
4661
+ version "0.55 .1"
4662
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.55 .1.tgz#baf4f23abe3014b29e56dea7d72d9946e56ac7dd "
4663
4663
4664
4664
run-async@^2.2.0 :
4665
4665
version "2.3.0"
You can’t perform that action at this time.
0 commit comments