Skip to content

Commit

Permalink
fix(tools): update build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jan 4, 2025
1 parent da64f3a commit 65fca7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tools/build-dist.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ const DEST = "../../dist";
const include = (f) =>
f.startsWith("./api") ||
f.startsWith("./genart") ||
f.startsWith("./adapter-");
f.startsWith("./adapter-") ||
f.startsWith("./time-");

const copyFiles = (ext) => {
for (let f of execFileSync("find", [".", "-name", "*." + ext])
Expand Down
3 changes: 2 additions & 1 deletion tools/deploy-docs.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { execFileSync } from "node:child_process";

for (let pkg of [
"core",
"adapter-editart",
"adapter-fxhash",
"adapter-layer",
"adapter-urlparams",
"core",
"time-fps-overlay",
]) {
console.log("deploying pkg docs:", pkg);
try {
Expand Down

0 comments on commit 65fca7e

Please sign in to comment.