From f04f429c2934dfd4c2d38e0aec6e228adf37d72d Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Tue, 25 Oct 2022 18:49:33 +0200 Subject: [PATCH] Rename plug:build to plug:compile --- build_plugs.sh | 2 +- silverbullet.ts | 2 +- website/CHANGELOG.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build_plugs.sh b/build_plugs.sh index cf528906..bb4e003f 100755 --- a/build_plugs.sh +++ b/build_plugs.sh @@ -1,3 +1,3 @@ #!/bin/sh -deno run -A --unstable silverbullet.ts plug:build $@ --dist dist_bundle/_plug plugs/*/*.plug.yaml +deno run -A --unstable silverbullet.ts plug:compile $@ --dist dist_bundle/_plug plugs/*/*.plug.yaml diff --git a/silverbullet.ts b/silverbullet.ts index 2f920876..24f50885 100755 --- a/silverbullet.ts +++ b/silverbullet.ts @@ -26,7 +26,7 @@ await new Command() .arguments("") .action(fixCommand) // plug:bundle - .command("plug:build", "Bundle (compile) one or more plug manifests") + .command("plug:compile", "Bundle (compile) one or more plug manifests") .arguments("<...name.plug.yaml:string>") .option("--debug", "Do not minifiy code", { default: false }) .option("--info", "Print out size info per function", { default: false }) diff --git a/website/CHANGELOG.md b/website/CHANGELOG.md index 1a1ea970..0317e60b 100644 --- a/website/CHANGELOG.md +++ b/website/CHANGELOG.md @@ -35,7 +35,7 @@ release. - `silverbullet upgrade` to perform a self upgrade - `silverbullet fix` to attempt to solve any issues with your space (deletes your `_plug` directory and `data.db` file) - - `silverbullet plug:build` replaces the old `plugos-bundle` command. + - `silverbullet plug:compile` replaces the old `plugos-bundle` command. - `silverbullet version` prints the current version ---