From a3469359c9736d2e9d5b4a14ccadf74d6d633fd4 Mon Sep 17 00:00:00 2001 From: Michael Wilson Date: Tue, 17 Feb 2026 13:12:48 +0930 Subject: [PATCH 1/2] add contributing section to readme and clarify install --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fd9f2ac..532655d 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,23 @@ The following categories of utilities are available under /utils: ## Import Example -To use these utilities in your Pipedream, install them via NPM: +To use these utilities, install via NPM (optional for Pipedream) in your local environment: ```bash npm install @sil-org/pipedream-utils ``` -and import the category/ies of functions you want. +or in Pipedream just import the category/ies of functions you want. -`import { helpers, netsuite } from '@sil-org/pipedream-utils'` +`import { helpers, netsuite } from '@sil-org/pipedream-utils@^0.3.0'` + +## Contributing + +Use the recommended extionsions with VSCode/VSCodium. + +Use the scripts in package.json to test, lint and format your code. + +The actions will check it when you push. + +The "Publish" action must be triggered manually in Github after updating the package.json version (and running `npm i` to update it in the lock file.) From f9b6938d99236d4e95cb08d4d67b7df78583d14d Mon Sep 17 00:00:00 2001 From: Michael Wilson Date: Tue, 17 Feb 2026 13:37:24 +0930 Subject: [PATCH 2/2] PR suggestions --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 532655d..9de942a 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,9 @@ or in Pipedream just import the category/ies of functions you want. ## Contributing -Use the recommended extionsions with VSCode/VSCodium. +Use the recommended extensions with VSCode/VSCodium. + +If using a different IDE, read the .vscode/extensions.json file and install the equivalent extensions in your environment. Use the scripts in package.json to test, lint and format your code.