Skip to content

Commit db85e92

Browse files
committed
fix(build): rollup deprecated plugins and options
1 parent dad6b32 commit db85e92

File tree

9 files changed

+133
-59
lines changed

9 files changed

+133
-59
lines changed

.babelrc

Lines changed: 0 additions & 5 deletions
This file was deleted.

babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
[require('@babel/preset-env'), { modules: false }],
4+
],
5+
}

build/rollup.config.base.js

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import babel from 'rollup-plugin-babel'
2-
import resolve from 'rollup-plugin-node-resolve'
2+
import resolve from '@rollup/plugin-node-resolve'
33
import vue from 'rollup-plugin-vue'
4-
import cjs from 'rollup-plugin-commonjs'
5-
import replace from 'rollup-plugin-replace'
4+
import cjs from '@rollup/plugin-commonjs'
5+
import replace from '@rollup/plugin-replace'
66
import { eslint } from 'rollup-plugin-eslint'
7+
import css from 'rollup-plugin-css-only'
8+
import autoprefixer from 'autoprefixer'
79
import fs from 'fs'
810
import CleanCSS from 'clean-css'
911

@@ -13,22 +15,24 @@ export default {
1315
input: 'src/index.js',
1416
plugins: [
1517
resolve({
16-
jsnext: true,
17-
main: true,
18-
browser: true,
18+
mainFields: ['module', 'jsnext', 'main', 'browser'],
1919
}),
20-
cjs(),
2120
eslint(),
2221
vue({
23-
css (style) {
24-
const file = require.resolve('vue-resize/dist/vue-resize.css')
25-
style += fs.readFileSync(file, { encoding: 'utf8' })
26-
fs.writeFileSync('dist/vue-virtual-scroller.css', new CleanCSS().minify(style).styles)
22+
css: false,
23+
style: {
24+
postcssPlugins: [autoprefixer],
25+
},
26+
}),
27+
css({
28+
output: styles => {
29+
fs.writeFileSync('dist/vue-virtual-scroller.css', new CleanCSS().minify(styles).styles)
2730
},
2831
}),
2932
babel({
3033
exclude: 'node_modules/**',
3134
}),
35+
cjs(),
3236
replace({
3337
VERSION: JSON.stringify(config.version),
3438
}),

build/rollup.config.browser.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const config = Object.assign({}, base, {
77
name: 'VueVirtualScroller',
88
file: 'dist/vue-virtual-scroller.min.js',
99
format: 'iife',
10+
sourcemap: true,
1011
},
1112
})
1213

build/rollup.config.es.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const config = Object.assign({}, base, {
55
name: 'vue-virtual-scroller',
66
file: 'dist/vue-virtual-scroller.esm.js',
77
format: 'es',
8+
sourcemap: true,
89
},
910
external: [
1011
...base.external,

build/rollup.config.umd.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const config = Object.assign({}, base, {
66
name: 'vue-virtual-scroller',
77
file: 'dist/vue-virtual-scroller.umd.js',
88
format: 'umd',
9+
sourcemap: true,
910
},
1011
})
1112

docs-src/babel.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
'presets': [
3-
[require('@babel/preset-env'), { 'modules': false }],
2+
presets: [
3+
[require('@babel/preset-env'), { modules: false }],
44
],
55
}

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,26 +42,27 @@
4242
},
4343
"devDependencies": {
4444
"@babel/core": "^7.9.0",
45-
"babel-eslint": "^10.1.0",
4645
"@babel/preset-env": "^7.9.0",
46+
"@rollup/plugin-commonjs": "^11.0.2",
47+
"@rollup/plugin-node-resolve": "^7.1.1",
48+
"@rollup/plugin-replace": "^2.3.1",
49+
"autoprefixer": "^9.7.5",
50+
"babel-eslint": "^10.1.0",
4751
"clean-css": "^4.1.8",
4852
"cross-env": "^7.0.2",
4953
"eslint": "^6.8.0",
5054
"eslint-config-standard": "^14.1.1",
51-
"eslint-plugin-import": "^2.7.0",
5255
"eslint-plugin-html": "^6.0.0",
56+
"eslint-plugin-import": "^2.7.0",
5357
"eslint-plugin-node": "^11.0.0",
5458
"eslint-plugin-promise": "^4.0.1",
5559
"eslint-plugin-standard": "^4.0.0",
5660
"eslint-plugin-vue": "^6.2.2",
5761
"rollup": "^2.2.0",
5862
"rollup-plugin-babel": "^4.4.0",
59-
"rollup-plugin-commonjs": "^10.1.0",
6063
"rollup-plugin-css-only": "^2.0.0",
6164
"rollup-plugin-css-porter": "^1.0.2",
6265
"rollup-plugin-eslint": "^7.0.0",
63-
"rollup-plugin-node-resolve": "^5.2.0",
64-
"rollup-plugin-replace": "^2.0.0",
6566
"rollup-plugin-terser": "^5.3.0",
6667
"rollup-plugin-vue": "^5.1.6",
6768
"vue": "^2.5.17",
@@ -70,7 +71,6 @@
7071
"browserslist": [
7172
"> 1%",
7273
"last 2 versions",
73-
"ie >= 9",
7474
"not ie <= 8"
7575
],
7676
"resolutions": {

yarn.lock

Lines changed: 102 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -742,6 +742,43 @@
742742
lodash "^4.17.13"
743743
to-fast-properties "^2.0.0"
744744

745+
"@rollup/plugin-commonjs@^11.0.2":
746+
version "11.0.2"
747+
resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-11.0.2.tgz#837cc6950752327cb90177b608f0928a4e60b582"
748+
integrity sha512-MPYGZr0qdbV5zZj8/2AuomVpnRVXRU5XKXb3HVniwRoRCreGlf5kOE081isNWeiLIi6IYkwTX9zE0/c7V8g81g==
749+
dependencies:
750+
"@rollup/pluginutils" "^3.0.0"
751+
estree-walker "^1.0.1"
752+
is-reference "^1.1.2"
753+
magic-string "^0.25.2"
754+
resolve "^1.11.0"
755+
756+
"@rollup/plugin-node-resolve@^7.1.1":
757+
version "7.1.1"
758+
resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.1.tgz#8c6e59c4b28baf9d223028d0e450e06a485bb2b7"
759+
integrity sha512-14ddhD7TnemeHE97a4rLOhobfYvUVcaYuqTnL8Ti7Jxi9V9Jr5LY7Gko4HZ5k4h4vqQM0gBQt6tsp9xXW94WPA==
760+
dependencies:
761+
"@rollup/pluginutils" "^3.0.6"
762+
"@types/resolve" "0.0.8"
763+
builtin-modules "^3.1.0"
764+
is-module "^1.0.0"
765+
resolve "^1.14.2"
766+
767+
"@rollup/plugin-replace@^2.3.1":
768+
version "2.3.1"
769+
resolved "https://registry.yarnpkg.com/@rollup/plugin-replace/-/plugin-replace-2.3.1.tgz#16fb0563628f9e6c6ef9e05d48d3608916d466f5"
770+
integrity sha512-qDcXj2VOa5+j0iudjb+LiwZHvBRRgWbHPhRmo1qde2KItTjuxDVQO21rp9/jOlzKR5YO0EsgRQoyox7fnL7y/A==
771+
dependencies:
772+
"@rollup/pluginutils" "^3.0.4"
773+
magic-string "^0.25.5"
774+
775+
"@rollup/pluginutils@^3.0.0", "@rollup/pluginutils@^3.0.4", "@rollup/pluginutils@^3.0.6":
776+
version "3.0.8"
777+
resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-3.0.8.tgz#4e94d128d94b90699e517ef045422960d18c8fde"
778+
integrity sha512-rYGeAc4sxcZ+kPG/Tw4/fwJODC3IXHYDH4qusdN/b6aLw5LPUbzpecYbEJh4sVQGPFJxd2dBU4kc1H3oy9/bnw==
779+
dependencies:
780+
estree-walker "^1.0.1"
781+
745782
"@types/babel-types@*", "@types/babel-types@^7.0.0":
746783
version "7.0.7"
747784
resolved "https://registry.yarnpkg.com/@types/babel-types/-/babel-types-7.0.7.tgz#667eb1640e8039436028055737d2b9986ee336e3"
@@ -959,6 +996,19 @@ atob@^2.1.2:
959996
resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
960997
integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
961998

999+
autoprefixer@^9.7.5:
1000+
version "9.7.5"
1001+
resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.5.tgz#8df10b9ff9b5814a8d411a5cfbab9c793c392376"
1002+
integrity sha512-URo6Zvt7VYifomeAfJlMFnYDhow1rk2bufwkbamPEAtQFcL11moLk4PnR7n9vlu7M+BkXAZkHFA0mIcY7tjQFg==
1003+
dependencies:
1004+
browserslist "^4.11.0"
1005+
caniuse-lite "^1.0.30001036"
1006+
chalk "^2.4.2"
1007+
normalize-range "^0.1.2"
1008+
num2fraction "^1.2.2"
1009+
postcss "^7.0.27"
1010+
postcss-value-parser "^4.0.3"
1011+
9621012
aws-sign2@~0.7.0:
9631013
version "0.7.0"
9641014
resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
@@ -1053,6 +1103,16 @@ braces@~3.0.2:
10531103
dependencies:
10541104
fill-range "^7.0.1"
10551105

1106+
browserslist@^4.11.0:
1107+
version "4.11.1"
1108+
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.11.1.tgz#92f855ee88d6e050e7e7311d987992014f1a1f1b"
1109+
integrity sha512-DCTr3kDrKEYNw6Jb9HFxVLQNaue8z+0ZfRBRjmCunKDEXEBajKDj2Y+Uelg+Pi29OnvaSGwjOsnRyNEkXzHg5g==
1110+
dependencies:
1111+
caniuse-lite "^1.0.30001038"
1112+
electron-to-chromium "^1.3.390"
1113+
node-releases "^1.1.53"
1114+
pkg-up "^2.0.0"
1115+
10561116
browserslist@^4.8.3, browserslist@^4.9.1:
10571117
version "4.11.0"
10581118
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.11.0.tgz#aef4357b10a8abda00f97aac7cd587b2082ba1ad"
@@ -1083,7 +1143,7 @@ camelcase@^1.0.2:
10831143
resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
10841144
integrity sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=
10851145

1086-
caniuse-lite@^1.0.30001035:
1146+
caniuse-lite@^1.0.30001035, caniuse-lite@^1.0.30001036, caniuse-lite@^1.0.30001038:
10871147
version "1.0.30001038"
10881148
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001038.tgz#44da3cbca2ab6cb6aa83d1be5d324e17f141caff"
10891149
integrity sha512-zii9quPo96XfOiRD4TrfYGs+QsGZpb2cGiMAzPjtf/hpFgB6zCPZgJb7I1+EATeMw/o+lG8FyRAnI+CWStHcaQ==
@@ -1461,6 +1521,11 @@ electron-to-chromium@^1.3.380:
14611521
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.386.tgz#224f97c808da76014096848f80bb9342b6a95cdb"
14621522
integrity sha512-M7JHfp32Bq6Am59AWgglh2d3nqe6y8Y94Vcb/AXUsO3DGvKUHYI5ML9+U5oNShfdOEfurrrjKSoSgFt2mz7mpw==
14631523

1524+
electron-to-chromium@^1.3.390:
1525+
version "1.3.391"
1526+
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.391.tgz#9b7ee2f387814ad7d37addaafe41c8f4c4498d24"
1527+
integrity sha512-WOi6loSnDmfICOqGRrgeK7bZeWDAbGjCptDhI5eyJAqSzWfoeRuOOU1rOTZRL29/9AaxTndZB6Uh8YrxRfZJqw==
1528+
14641529
emoji-regex@^7.0.1:
14651530
version "7.0.3"
14661531
resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156"
@@ -1729,6 +1794,11 @@ estree-walker@^0.6.1:
17291794
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
17301795
integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
17311796

1797+
estree-walker@^1.0.1:
1798+
version "1.0.1"
1799+
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-1.0.1.tgz#31bc5d612c96b704106b477e6dd5d8aa138cb700"
1800+
integrity sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==
1801+
17321802
esutils@^2.0.2:
17331803
version "2.0.3"
17341804
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
@@ -2428,7 +2498,7 @@ lru-cache@^4.1.2:
24282498
pseudomap "^1.0.2"
24292499
yallist "^2.1.2"
24302500

2431-
magic-string@^0.25.2:
2501+
magic-string@^0.25.2, magic-string@^0.25.5:
24322502
version "0.25.7"
24332503
resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051"
24342504
integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==
@@ -2520,6 +2590,11 @@ node-releases@^1.1.52:
25202590
dependencies:
25212591
semver "^6.3.0"
25222592

2593+
node-releases@^1.1.53:
2594+
version "1.1.53"
2595+
resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4"
2596+
integrity sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ==
2597+
25232598
normalize-package-data@^2.3.2:
25242599
version "2.5.0"
25252600
resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
@@ -2535,6 +2610,16 @@ normalize-path@^3.0.0, normalize-path@~3.0.0:
25352610
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
25362611
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
25372612

2613+
normalize-range@^0.1.2:
2614+
version "0.1.2"
2615+
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
2616+
integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
2617+
2618+
num2fraction@^1.2.2:
2619+
version "1.2.2"
2620+
resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
2621+
integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
2622+
25382623
oauth-sign@~0.9.0:
25392624
version "0.9.0"
25402625
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
@@ -2725,6 +2810,13 @@ pkg-dir@^2.0.0:
27252810
dependencies:
27262811
find-up "^2.1.0"
27272812

2813+
pkg-up@^2.0.0:
2814+
version "2.0.0"
2815+
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
2816+
integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
2817+
dependencies:
2818+
find-up "^2.1.0"
2819+
27282820
pkg-up@^3.1.0:
27292821
version "3.1.0"
27302822
resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-3.1.0.tgz#100ec235cc150e4fd42519412596a28512a0def5"
@@ -2769,6 +2861,11 @@ postcss-selector-parser@^6.0.2:
27692861
indexes-of "^1.0.1"
27702862
uniq "^1.0.1"
27712863

2864+
postcss-value-parser@^4.0.3:
2865+
version "4.0.3"
2866+
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d"
2867+
integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg==
2868+
27722869
postcss@^5.2.5:
27732870
version "5.2.18"
27742871
resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
@@ -2788,7 +2885,7 @@ postcss@^6.0.1:
27882885
source-map "^0.6.1"
27892886
supports-color "^5.4.0"
27902887

2791-
postcss@^7.0.14:
2888+
postcss@^7.0.14, postcss@^7.0.27:
27922889
version "7.0.27"
27932890
resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9"
27942891
integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ==
@@ -3102,7 +3199,7 @@ resolve-url@^0.2.1:
31023199
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
31033200
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
31043201

3105-
resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.11.1, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.3.2:
3202+
resolve@^1.1.6, resolve@^1.10.0, resolve@^1.10.1, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.13.1, resolve@^1.14.2, resolve@^1.3.2:
31063203
version "1.15.1"
31073204
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8"
31083205
integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==
@@ -3139,17 +3236,6 @@ rollup-plugin-babel@^4.4.0:
31393236
"@babel/helper-module-imports" "^7.0.0"
31403237
rollup-pluginutils "^2.8.1"
31413238

3142-
rollup-plugin-commonjs@^10.1.0:
3143-
version "10.1.0"
3144-
resolved "https://registry.yarnpkg.com/rollup-plugin-commonjs/-/rollup-plugin-commonjs-10.1.0.tgz#417af3b54503878e084d127adf4d1caf8beb86fb"
3145-
integrity sha512-jlXbjZSQg8EIeAAvepNwhJj++qJWNJw1Cl0YnOqKtP5Djx+fFGkp3WRh+W0ASCaFG5w1jhmzDxgu3SJuVxPF4Q==
3146-
dependencies:
3147-
estree-walker "^0.6.1"
3148-
is-reference "^1.1.2"
3149-
magic-string "^0.25.2"
3150-
resolve "^1.11.0"
3151-
rollup-pluginutils "^2.8.1"
3152-
31533239
rollup-plugin-css-only@^2.0.0:
31543240
version "2.0.0"
31553241
resolved "https://registry.yarnpkg.com/rollup-plugin-css-only/-/rollup-plugin-css-only-2.0.0.tgz#696a0d0bc8072f3cb67eb830ebb579e3bad7ecf6"
@@ -3176,25 +3262,6 @@ rollup-plugin-eslint@^7.0.0:
31763262
eslint "^6.0.0"
31773263
rollup-pluginutils "^2.7.1"
31783264

3179-
rollup-plugin-node-resolve@^5.2.0:
3180-
version "5.2.0"
3181-
resolved "https://registry.yarnpkg.com/rollup-plugin-node-resolve/-/rollup-plugin-node-resolve-5.2.0.tgz#730f93d10ed202473b1fb54a5997a7db8c6d8523"
3182-
integrity sha512-jUlyaDXts7TW2CqQ4GaO5VJ4PwwaV8VUGA7+km3n6k6xtOEacf61u0VXwN80phY/evMcaS+9eIeJ9MOyDxt5Zw==
3183-
dependencies:
3184-
"@types/resolve" "0.0.8"
3185-
builtin-modules "^3.1.0"
3186-
is-module "^1.0.0"
3187-
resolve "^1.11.1"
3188-
rollup-pluginutils "^2.8.1"
3189-
3190-
rollup-plugin-replace@^2.0.0:
3191-
version "2.2.0"
3192-
resolved "https://registry.yarnpkg.com/rollup-plugin-replace/-/rollup-plugin-replace-2.2.0.tgz#f41ae5372e11e7a217cde349c8b5d5fd115e70e3"
3193-
integrity sha512-/5bxtUPkDHyBJAKketb4NfaeZjL5yLZdeUihSfbF2PQMz+rSTEb8ARKoOl3UBT4m7/X+QOXJo3sLTcq+yMMYTA==
3194-
dependencies:
3195-
magic-string "^0.25.2"
3196-
rollup-pluginutils "^2.6.0"
3197-
31983265
rollup-plugin-terser@^5.3.0:
31993266
version "5.3.0"
32003267
resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-5.3.0.tgz#9c0dd33d5771df9630cd027d6a2559187f65885e"
@@ -3221,7 +3288,7 @@ rollup-plugin-vue@^5.1.6:
32213288
source-map "0.7.3"
32223289
vue-runtime-helpers "^1.1.1"
32233290

3224-
rollup-pluginutils@^2.3.3, rollup-pluginutils@^2.4.1, rollup-pluginutils@^2.6.0, rollup-pluginutils@^2.7.1, rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2:
3291+
rollup-pluginutils@^2.3.3, rollup-pluginutils@^2.4.1, rollup-pluginutils@^2.7.1, rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2:
32253292
version "2.8.2"
32263293
resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e"
32273294
integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==

0 commit comments

Comments
 (0)