1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: fix for rollup 3
Author: Yadd <yadd@debian.org>
Bug-Debian: https://bugs.debian.org/1023327
Forwarded: not-needed
Last-Update: 2022-10-28
--- a/src/editor/libs/codemirror/rollup.config.js
+++ b/src/editor/libs/codemirror/rollup.config.js
@@ -1,6 +1,6 @@
-import buble from 'rollup-plugin-buble';
+const buble = require('@rollup/plugin-buble');
-export default {
+module.exports = {
input: "src/codemirror.js",
output: {
banner: `// CodeMirror, copyright (c) by Marijn Haverbeke and others
|