From 9d4c5b144d4614a4e633dcbc116a0234d27517e3 Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Thu, 10 Aug 2023 11:42:09 -0700 Subject: [PATCH] docs: Fix proto source/schema changes. --- website/blog/2023-04-21_proto-v0.7.mdx | 2 +- website/blog/2023-04-24_moon-v1.3.mdx | 2 +- website/docs/install.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/website/blog/2023-04-21_proto-v0.7.mdx b/website/blog/2023-04-21_proto-v0.7.mdx index e9e2b1c616b..864a3b39cee 100644 --- a/website/blog/2023-04-21_proto-v0.7.mdx +++ b/website/blog/2023-04-21_proto-v0.7.mdx @@ -70,7 +70,7 @@ Very simple right? With this, you can now configure moon as a plugin within prot moon = "1.2.0" [plugins] -moon = "schema:./path/to/moon-schema.toml" +moon = "source:./path/to/moon-schema.toml" ``` And ultimately manage every version of moon through proto! Because moon is now a plugin, every diff --git a/website/blog/2023-04-24_moon-v1.3.mdx b/website/blog/2023-04-24_moon-v1.3.mdx index f8193007507..15f892b89d2 100644 --- a/website/blog/2023-04-24_moon-v1.3.mdx +++ b/website/blog/2023-04-24_moon-v1.3.mdx @@ -54,7 +54,7 @@ In your `.prototools` or `~/.proto/config.toml` file, add the following snippet: ```toml title=".prototools" [plugins] -moon = "schema:https://raw.githubusercontent.com/moonrepo/moon/master/proto-plugin.toml" +moon = "source:https://raw.githubusercontent.com/moonrepo/moon/master/proto-plugin.toml" ``` And as easy as that, you can now use `moon` as a tool within any `proto` command. For example: diff --git a/website/docs/install.mdx b/website/docs/install.mdx index d1627a3fa20..08b1dfb671c 100644 --- a/website/docs/install.mdx +++ b/website/docs/install.mdx @@ -52,7 +52,7 @@ install moon to `~/.proto/tools/moon` and make the binary available at `~/.proto ```toml title=".prototools" [plugins] -moon = "schema:https://raw.githubusercontent.com/moonrepo/moon/master/proto-plugin.toml" +moon = "source:https://raw.githubusercontent.com/moonrepo/moon/master/proto-plugin.toml" ``` ```shell