Skip to content

Commit

Permalink
fix(build): use node for imports
Browse files Browse the repository at this point in the history
  • Loading branch information
kettei-sproutty committed Aug 17, 2024
1 parent a5d4a5c commit 1f4c83b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { exec, execSync } from "child_process";
import fs from "fs";
import { execSync } from "node:child_process";
import fs from "node:fs";

const pkg = fs.readFileSync("package.json");
const packageJSON = JSON.parse(pkg);
Expand Down

0 comments on commit 1f4c83b

Please sign in to comment.