Skip to content

Commit

Permalink
fix(vanilla): disable mangle
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Feb 29, 2024
1 parent 7e1229e commit abfdc45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/hover-vanilla/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const plugins = ({ compress }) =>
[
commonjs(),
nodeResolve(),
compress && terser(),
compress && terser({ mangle: false }),
filesize(),
visualizer({ template: 'treemap' }),
replace({
Expand Down
2 changes: 1 addition & 1 deletion packages/vanilla/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import terser from '@rollup/plugin-terser'
const plugins = ({ compress }) => [
commonjs(),
nodeResolve(),
compress && terser(),
compress && terser({ mangle: false }),
filesize(),
visualizer({ template: 'treemap' }),
replace({
Expand Down

0 comments on commit abfdc45

Please sign in to comment.