Skip to content

Commit e7c9aec

Browse files
committed
move license plugin to plugins array
1 parent 89b10f8 commit e7c9aec

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/tracing/rollup.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const plugins = [
1717
resolve({
1818
mainFields: ['module'],
1919
}),
20+
licensePlugin,
2021
];
2122

2223
const bundleConfig = {
@@ -28,7 +29,7 @@ const bundleConfig = {
2829
name: 'Sentry',
2930
},
3031
context: 'window',
31-
plugins: [...plugins, licensePlugin],
32+
plugins,
3233
};
3334

3435
export default [

packages/vue/rollup.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const plugins = [
1717
resolve({
1818
mainFields: ['module'],
1919
}),
20+
licensePlugin,
2021
];
2122

2223
const bundleConfig = {
@@ -28,7 +29,7 @@ const bundleConfig = {
2829
name: 'Sentry',
2930
},
3031
context: 'window',
31-
plugins: [...plugins, licensePlugin],
32+
plugins,
3233
};
3334

3435
export default [

0 commit comments

Comments
 (0)