Skip to content

Commit 76e96bc

Browse files
committed
forgot to pass object spread options to buble, fixing
1 parent b393a9e commit 76e96bc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

gulp/rollup.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ const bundleOpts = {
4040
}
4141
}),
4242

43-
isProductionBuild && buble(),
43+
isProductionBuild && buble({
44+
objectAssign: "Object.assign"
45+
}),
4446
isProductionBuild && terser()
4547
],
4648
cache: true

0 commit comments

Comments
 (0)