From beaad9443fb4961d1440ac0f93720056705e977a Mon Sep 17 00:00:00 2001 From: Dmitry Savintsev Date: Fri, 8 Nov 2024 21:18:06 +0100 Subject: [PATCH] update local devel instructions in README.md PR updates the local development instructions in README.md that are currently causing errors since `npm run` doesn't contain `prepare-dips`. Fix #1124. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0a738c8..3abc859 100644 --- a/README.md +++ b/README.md @@ -544,5 +544,7 @@ This scheme is basic and needs improvements. Pull requests and ideas are welcome 1. Install [act](https://github.com/nektos/act#installation) 2. Make a symlink for `act` to work properly: `ln -s . golangci-lint-action` -3. Prepare deps once: `npm run prepare-deps` -4. Run `npm run local` after any change to test it +3. Instally typescript (on a Mac, `brew install tsc`) +4. Prepare deps once: `npm install` +5. Build: `npm run build` +6. Run `npm run local` after any change to test it