Skip to content

Commit

Permalink
fix: rollup terser plugin was not up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
lquixada committed Apr 22, 2023
1 parent 7bd4f42 commit 50a233d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@rollup/plugin-terser": "0.4.1",
"@types/chai": "4.3.4",
"@types/mocha": "10.0.1",
"@types/node": "18.15.13",
Expand All @@ -90,7 +91,6 @@
"rimraf": "5.0.0",
"rollup": "3.20.7",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-terser": "7.0.2",
"semver": "7.5.0",
"serve-index": "1.9.1",
"standard": "17.0.0",
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Rollup creates the browser version of the polyfill and ponyfill. */
import path from 'path'
import copy from 'rollup-plugin-copy'
import { terser } from 'rollup-plugin-terser'
import terser from '@rollup/plugin-terser'

const input = path.join(__dirname, 'node_modules', 'whatwg-fetch', 'fetch.js')

Expand Down

0 comments on commit 50a233d

Please sign in to comment.