first commit
This commit is contained in:
9
scripts/typecheck.mjs
Normal file
9
scripts/typecheck.mjs
Normal file
@@ -0,0 +1,9 @@
|
||||
import { execSync } from "node:child_process";
|
||||
|
||||
const targets = ["prototype/liquid-console.js"];
|
||||
|
||||
for (const file of targets) {
|
||||
execSync(`node --check ${file}`, { stdio: "inherit" });
|
||||
}
|
||||
|
||||
console.log("typecheck passed");
|
||||
Reference in New Issue
Block a user