We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00f3874 commit 1387f8bCopy full SHA for 1387f8b
boost.ts
@@ -38,9 +38,12 @@ const add = new Command()
38
39
const net = new Command()
40
.arguments("<string>")
41
- .description("🚧 [WIP] Run remote task🌐")
42
- .action(() => {
43
- console.log("I'm sorry. This command is currently under development...🚧");
+ .description("Run remote task🌐")
+ .arguments("<url:string>")
+ .action(async (opts: Record<string, string>, url: string) => {
44
+ console.log(opts, url);
45
+ import.meta.url = Deno.cwd();
46
+ await execDeno(url);
47
exit();
48
});
49
@@ -51,7 +54,7 @@ new Command()
51
54
.command("get", get)
52
55
.command("edit ", edit)
53
56
.command("add", add)
- .command("run", net)
57
+ .command("net", net)
58
.parse();
59
60
const path = await selectScript();
0 commit comments