Skip to content

Commit 3f12c54

Browse files
authored
fix: missing license plugin in es6 rollup configuration (#2722)
License plugin was missing in es6 non minified rollup configuration
1 parent 04ed0c6 commit 3f12c54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/browser/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export default [
109109
},
110110
include: ['*.ts+(|x)', '**/*.ts+(|x)', '../**/*.ts+(|x)'],
111111
}),
112-
...plugins.slice(1),
112+
...plugins.slice(1).concat(bundleConfig.plugins.slice(-1)),
113113
],
114114
},
115115
{

0 commit comments

Comments
 (0)