From dff35598f5ac9b10c54b8a5587b71c5bbf332e30 Mon Sep 17 00:00:00 2001 From: Chris Hendrickson Date: Thu, 23 Apr 2026 23:19:46 -0400 Subject: [PATCH] Add melos install:local script Compiles and installs dew binary to ~/.local/bin/dew for global availability without needing the repo's toolchain binary. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- pubspec.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pubspec.yaml b/pubspec.yaml index 7f23ebf..e387307 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -45,3 +45,8 @@ melos: run 'dew mcp serve' from your MCP client config — this keeps stdout clean for the JSON-RPC channel. run: dart compile exe packages/cli/bin/dew.dart -o .project/toolchain/bin/dew + install:local: + description: >- + Compile and install the Dew CLI to ~/.local/bin/dew so it is available + globally on your PATH. Requires ~/.local/bin to be on PATH. + run: dart compile exe packages/cli/bin/dew.dart -o ~/.local/bin/dew