Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-12-25 22:36:22 +0300
committerGitHub <noreply@github.com>2019-12-25 22:36:22 +0300
commitf153748f522e01ba16989e6c8085a69ff656b069 (patch)
tree517db0c45f56eafe56b500f0cd775b037fa33e5d /js
parente2f7fe6cf15a2c2be586cb260648da340257415c (diff)
Switch to @rollup/plugin-node-resolve (#29851)
Diffstat (limited to 'js')
-rw-r--r--js/tests/integration/rollup.bundle.js2
-rw-r--r--js/tests/karma.conf.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/js/tests/integration/rollup.bundle.js b/js/tests/integration/rollup.bundle.js
index 4aa1dcde94..d09a9dbbe2 100644
--- a/js/tests/integration/rollup.bundle.js
+++ b/js/tests/integration/rollup.bundle.js
@@ -1,6 +1,6 @@
/* eslint-env node */
-const resolve = require('rollup-plugin-node-resolve')
+const resolve = require('@rollup/plugin-node-resolve')
const babel = require('rollup-plugin-babel')
module.exports = {
diff --git a/js/tests/karma.conf.js b/js/tests/karma.conf.js
index 624f5f638a..61f17dedf6 100644
--- a/js/tests/karma.conf.js
+++ b/js/tests/karma.conf.js
@@ -3,7 +3,7 @@ const path = require('path')
const ip = require('ip')
const babel = require('rollup-plugin-babel')
const istanbul = require('rollup-plugin-istanbul')
-const resolve = require('rollup-plugin-node-resolve')
+const resolve = require('@rollup/plugin-node-resolve')
const {
browsers,