1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
From: =?utf-8?q?Bastien_Roucari=C3=A8s?= <rouca@debian.org>
Date: Sun, 15 Feb 2026 22:04:28 +0100
Subject: Update to @rollup/plugin-buble
Forwarded: not-needed
---
scripts/rollup/config-es.js | 2 +-
scripts/rollup/config-min.js | 2 +-
scripts/rollup/config.js | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/scripts/rollup/config-es.js b/scripts/rollup/config-es.js
index c971586..74c1aa8 100644
--- a/scripts/rollup/config-es.js
+++ b/scripts/rollup/config-es.js
@@ -1,5 +1,5 @@
const path = require("path");
-const buble = require("rollup-plugin-buble");
+const buble = require("@rollup/plugin-buble");
const SRC_DIR = path.resolve("../src");
const DIST_DIR = path.resolve(SRC_DIR, "../dist");
diff --git a/scripts/rollup/config-min.js b/scripts/rollup/config-min.js
index 9447ac5..ae20e8f 100644
--- a/scripts/rollup/config-min.js
+++ b/scripts/rollup/config-min.js
@@ -1,5 +1,5 @@
const path = require("path");
-const buble = require("rollup-plugin-buble");
+const buble = require("@rollup/plugin-buble");
const uglify = require("rollup-plugin-uglify");
const SRC_DIR = path.resolve("../src");
diff --git a/scripts/rollup/config.js b/scripts/rollup/config.js
index d171dc4..8188a76 100644
--- a/scripts/rollup/config.js
+++ b/scripts/rollup/config.js
@@ -1,5 +1,5 @@
const path = require("path");
-const buble = require("rollup-plugin-buble");
+const buble = require("@rollup/plugin-buble");
const SRC_DIR = path.resolve("../src");
const DIST_DIR = path.resolve(SRC_DIR, "../dist");
|