File: 001_rollup-plugin-buble.patch

package info (click to toggle)
node-prosemirror-schema-basic 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 132 kB
  • sloc: javascript: 119; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Change @rollup/plugin-buble to rollup-plugin-buble
Author: Abraham Raji <avronr@tuta.io>
Forwarded: not-needed
Last-Update: 2020-09-30
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/rollup.config.js
+++ b/rollup.config.js
@@ -9,6 +9,6 @@ module.exports = {
     format: 'es',
     sourcemap: true
   }],
-  plugins: [require('@rollup/plugin-buble')()],
+  plugins: [require('rollup-plugin-buble')()],
   external(id) { return !/^[\.\/]/.test(id) }
 }