From 7e0682b80fecae3878c6cb189eabc5e1fe9943a2 Mon Sep 17 00:00:00 2001 From: Jack <72348727+Jack-GitHub12@users.noreply.github.com> Date: Wed, 8 Apr 2026 20:49:22 -0500 Subject: [PATCH] fix: clarify package manager as npm, remove orphaned pnpm config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves #58 — CONTRIBUTING.md referenced pnpm but the project uses npm throughout (lockfile, scripts, CI). Updated all commands to npm and removed the stale pnpm-workspace.yaml. --- CONTRIBUTING.md | 22 +++++++++++----------- pnpm-workspace.yaml | 5 ----- 2 files changed, 11 insertions(+), 16 deletions(-) delete mode 100644 pnpm-workspace.yaml diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index bfdcf84..6fb17be 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -20,7 +20,7 @@ Thank you for your interest in contributing to jam-nodes! This guide will help y ### Prerequisites - Node.js 18+ -- pnpm 8+ +- npm 9+ ### Setup @@ -30,13 +30,13 @@ git clone https://github.com/anthropics/jam-nodes.git cd jam-nodes # Install dependencies -pnpm install +npm install # Build all packages -pnpm build +npm run build # Run tests -pnpm test +npm test ``` --- @@ -459,16 +459,16 @@ export const HubSpotCredential = defineOAuth2Credential({ ```bash # Run all tests -pnpm test +npm test # Run tests in watch mode -pnpm test:watch +npm run test:watch # Run tests for a specific package -pnpm --filter @jam-nodes/nodes test +npm test --workspace=@jam-nodes/nodes # Run tests for a specific file -pnpm test hunter +npm test hunter ``` --- @@ -477,9 +477,9 @@ pnpm test hunter ### Before Submitting -1. **Run tests:** `pnpm test` -2. **Run linting:** `pnpm lint` -3. **Build packages:** `pnpm build` +1. **Run tests:** `npm test` +2. **Run linting:** `npm run lint` +3. **Build packages:** `npm run build` 4. **Update exports:** Ensure new nodes are exported from index files ### PR Checklist diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml deleted file mode 100644 index abc3af1..0000000 --- a/pnpm-workspace.yaml +++ /dev/null @@ -1,5 +0,0 @@ -packages: - - packages/* - -onlyBuiltDependencies: - - esbuild