summaryrefslogtreecommitdiff
path: root/gnu/packages/patches/mathjax-4.0.0-disable-webpack.patch
blob: 8bec8806749b9a3d29efe14d8e5b541672c56325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Guix uses esbuild to “link” the files. We only need the build step.

diff --git a/components/bin/makeAll b/components/bin/makeAll
--- a/components/bin/makeAll
+++ b/components/bin/makeAll
@@ -154,7 +154,7 @@
     const fulldir = path.resolve(root, dir);
     const config = getConfig(fulldir);
     processDir(fulldir, buildLib, config);
-    processDir(fulldir, copyLib, config);
-    processDir(fulldir, webpackLib, config);
+    //processDir(fulldir, copyLib, config);
+    //processDir(fulldir, webpackLib, config);
   }
 }