Add script command to allow calling external helper scripts

This commit is contained in:
2026-04-09 18:00:59 -05:00
parent 39847fe77a
commit a418f9a89f
3 changed files with 51 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ import {Zip} from "./zip.js";
import {Concat} from "./concat.js";
import {Call} from "./call.js";
import {Chunk} from "./chunk.js";
import {Script} from "./script.js";
export type Commands = Command<CommandData>[]
export const commands: Commands = [
@@ -90,6 +91,7 @@ export const commands: Commands = [
new RSub,
new RunFile,
new Save,
new Script,
new Set,
new Show,
new Sort,