From f81ffed3e4758bc8f01b7bd6f97cc898308aa5f2 Mon Sep 17 00:00:00 2001 From: Matthew Bain <66839492+rocketstack-matt@users.noreply.github.com> Date: Sat, 14 Dec 2024 18:20:25 +0000 Subject: [PATCH] Revert "docs: update CLI dev env setup instructions (#669)" This reverts commit ee0dbe9cc09af287e550b7715d454559e328b561. --- cli/DEVELOPER_GUIDE.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/cli/DEVELOPER_GUIDE.md b/cli/DEVELOPER_GUIDE.md index 9cf8f558..99540160 100644 --- a/cli/DEVELOPER_GUIDE.md +++ b/cli/DEVELOPER_GUIDE.md @@ -1,17 +1,13 @@ # Developing the CALM CLI -## Prerequisites - -We recommend using Node v20.18.1 (use `nvm` to manage node versions if needed). The `canvas` package we use does not seem to be compatible with later versions of node. - ## Building & linking the CLI -Clone the project and run the following commands from within this `cli` directory: +Clone the project and run the following commands: ```shell npm install npm run build -npx link . +npx link ``` When you've made a change to the CLI and want to test it out, you can rerun the build and link steps.