File: drop-rollup-plugin-copy.patch

package info (click to toggle)
node-codemirror 6.38.1%2B~cs119.80.67-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,544 kB
  • sloc: javascript: 21,786; makefile: 18
file content (21 lines) | stat: -rw-r--r-- 454 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: drop useless plugin
Author: Yadd <yadd@debian.org>
Forwarded: not-needed
Last-Update: 2023-07-23

--- a/crelt/rollup.config.js
+++ b/crelt/rollup.config.js
@@ -1,5 +1,3 @@
-import copy from "rollup-plugin-copy"
-
 export default {
   input: "index.js",
   output: {
@@ -7,7 +5,4 @@
     format: "cjs",
     exports: "default"
   },
-  plugins: [
-    copy({targets: [{src: "index.d.ts", dest: "dist", rename: () => "index.d.cts"}]})
-  ]
 }