File: mathjax-disable-webpack.patch

package info (click to toggle)
guix 1.4.0-9
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 161,500 kB
  • sloc: lisp: 861,023; cpp: 10,741; javascript: 9,632; sh: 8,913; makefile: 951; ansic: 558; python: 129; sql: 33; sed: 16
file content (23 lines) | stat: -rw-r--r-- 700 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
22
23
commit 0cfd5b23aed8767f2bcf9583c1feaf4c9a64703a
Author: Lars-Dominik Braun <lars@6xq.net>
Date:   Wed Dec 1 14:27:33 2021 +0100

    guix: Disable webpack
    
    Guix uses esbuild to “link” the files. We only need the build step.

diff --git a/components/bin/makeAll b/components/bin/makeAll
index 3e7a8914..5dae9b9b 100755
--- a/components/bin/makeAll
+++ b/components/bin/makeAll
@@ -61,8 +61,8 @@ function processList(dirs) {
   for (const dir of dirs) {
     const fulldir = path.resolve(dir);
     processDir(fulldir, buildLib);
-    processDir(fulldir, webpackLib);
-    processDir(fulldir, copyLib);
+    //processDir(fulldir, webpackLib);
+    //processDir(fulldir, copyLib);
   }
 }