From 1cb3b1dcd45093ffd9840feeb188f2b558e15ab2 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 18 Dec 2024 11:33:41 +0100 Subject: [PATCH] fix docs versions --- docs/build/configure-cli.md | 1 + docs/build/moss-sugar.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/build/configure-cli.md b/docs/build/configure-cli.md index c2eb9781..20f33429 100644 --- a/docs/build/configure-cli.md +++ b/docs/build/configure-cli.md @@ -66,6 +66,7 @@ export default defineConfig({ }, }, ], + toolCurations: [], }); ``` diff --git a/docs/build/moss-sugar.md b/docs/build/moss-sugar.md index 4e28cf3a..569c1485 100644 --- a/docs/build/moss-sugar.md +++ b/docs/build/moss-sugar.md @@ -9,7 +9,7 @@ Now that the holochain app works outside Moss, let's add some Weave/Moss specifi The Weave dev CLI will allow you to run yor Tool in a sandboxed instance of Moss with hot-reloading. Install it as a dev dependency: ```bash -npm install -d @theweave/cli@0.13.0-gamma.5 +npm install -d @theweave/cli@0.13.0-epsilon.1 ``` ### Weave Client @@ -19,5 +19,5 @@ npm install -d @theweave/cli@0.13.0-gamma.5 The Weave API npm package will allow your Tool's frontend to interact with Moss using the `WeaveClient` class. Install it into the workspace of your frontend code: ```bash -npm install -w ui @theweave/api@0.2.1 +npm install -w ui @theweave/api@0.4.0-alpha.0 ```