Skip to content

Commit

Permalink
fix(rollup-plugin): replace package rollup-plugin-terser by @rollup/p…
Browse files Browse the repository at this point in the history
…lugin-terser (#3170)

* fix(rollup-plugin): replace package rollup-plugin-terser by @rollup/plugin-terser

fix #3136

* fix(deps): update minimum version of @rollup/plugin-terser to ^0.4.3
  • Loading branch information
ansidev committed Apr 16, 2024
1 parent b950cd6 commit 70b1088
Show file tree
Hide file tree
Showing 7 changed files with 462 additions and 449 deletions.
2 changes: 1 addition & 1 deletion gulp-tasks/utils/rollup-helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const {babel} = require('@rollup/plugin-babel');
const {nodeResolve} = require('@rollup/plugin-node-resolve');
const asyncToPromises = require('babel-plugin-transform-async-to-promises');
const replace = require('@rollup/plugin-replace');
const terserPlugin = require('rollup-plugin-terser').terser;
const terserPlugin = require('@rollup/plugin-terser');

const constants = require('./constants');
const getVersionsCDNUrl = require('./versioned-cdn-url');
Expand Down
262 changes: 108 additions & 154 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.1",
"@rollup/plugin-terser": "^0.4.3",
"@types/babel__core": "^7.1.12",
"@types/babel__preset-env": "^7.9.1",
"@types/common-tags": "^1.8.0",
Expand Down Expand Up @@ -71,7 +72,6 @@
"proxyquire": "^2.1.3",
"require-dir": "^1.2.0",
"rollup": "^2.43.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"selenium-assistant": "^6.1.1",
"semver": "^7.3.2",
Expand Down

0 comments on commit 70b1088

Please sign in to comment.