Skip to content

Commit d6d21b7

Browse files
project: Minor edit to rollup config file for easier comparison w/ template.
1 parent 7e1b510 commit d6d21b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const external = Object.keys(pkg.peerDependencies) || [];
2828
/**
2929
* @type {Plugin[]}
3030
*/
31-
const defaultPlugins = /** @type {Plugin[]} */ ([
31+
const plugins = /** @type {Plugin[]} */ ([
3232
json(),
3333
commonjs(),
3434
// Allow node_modules resolution. Use 'external' to control
@@ -81,7 +81,7 @@ const createUmdConfig = ({ outputFile, extraPlugins }) => ({
8181
name: pkg.config.umdName,
8282
sourcemap: true,
8383
},
84-
plugins: [...defaultPlugins, ...(extraPlugins || [])],
84+
plugins: [...plugins, ...(extraPlugins || [])],
8585
});
8686

8787
/**

0 commit comments

Comments
 (0)