Skip to content

Commit

Permalink
webpack to esbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
daviszung committed May 27, 2023
1 parent 63173f0 commit 42a8c8e
Show file tree
Hide file tree
Showing 10 changed files with 2,806 additions and 32 deletions.
9 changes: 9 additions & 0 deletions buildEvolve.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
require("esbuild")
.build({
logLevel: "info",
entryPoints: ["./src/main.js"],
bundle: true,
minify: true,
outfile: "evolve/main.js",
})
.catch(() => process.exit(1));
9 changes: 9 additions & 0 deletions buildWiki.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
require("esbuild")
.build({
logLevel: "info",
entryPoints: ["./src/wiki/wiki.js"],
bundle: true,
minify: true,
outfile: "wiki/wiki.js",
})
.catch(() => process.exit(1));
670 changes: 669 additions & 1 deletion evolve/main.js

Large diffs are not rendered by default.

Loading

0 comments on commit 42a8c8e

Please sign in to comment.