We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1fd222 commit fa6e833Copy full SHA for fa6e833
build/build.main.js
@@ -30,7 +30,7 @@ function buildEntry ({ input, output }) {
30
const isProd = /min\.js$/.test(output.file)
31
return rollup.rollup(input)
32
.then(bundle => bundle.generate(output))
33
- .then(({ code }) => {
+ .then(({ output: [{ code }] }) => {
34
if (isProd) {
35
var minified = (output.banner ? output.banner + '\n' : '') + uglify.minify(code, {
36
output: {
0 commit comments