From 3feba916f280019b2553597ac8ee6e8dac6d0d79 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 11 May 2026 05:15:34 +0000 Subject: [PATCH 1/4] Initial plan From d7965eab9f186895b37a12de5673c95ba02df7ed Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 11 May 2026 05:21:22 +0000 Subject: [PATCH 2/4] Add Copilot release instructions Agent-Logs-Url: https://github.com/nevware21/ts-debug/sessions/cc86829b-f9c5-47f5-a42f-e2ed2277d2a3 Co-authored-by: nev21 <82737406+nev21@users.noreply.github.com> --- .github/copilot-instructions.md | 31 +++++++++++++++++++++++++++++++ README.md | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .github/copilot-instructions.md diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..b761e8f --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,31 @@ +# Copilot instructions for `nevware21/ts-debug` + +## Repository overview + +- This repository is a Rush monorepo. +- The publishable packages are `dbg` (`@nevware21/ts-debug`) and `providers` (`@nevware21/ts-debug-providers`). +- Root-level validation runs from the repository root with: + - `npm run lint` + - `npm run build` + - `npm run test` + +## Release checklist + +When preparing a release, always: + +1. Use a commit title in the exact format `[Release] Increase version to x.y.z`. +2. Update every required package manifest: + - `package.json` + - `dbg/package.json` + - `providers/package.json` + - Keep `providers/package.json` aligned with the new `@nevware21/ts-debug` dependency version. +3. Update `README.md` so the recommended install version matches the new release. +4. Update `CHANGELIST.md`: + - include only the significant changes for the new version + - add a full changelist link when one is available + - preserve any existing unreleased details as-is; do not remove them and do not reduce them into the new version summary + +## Release packaging notes + +- Root `npm run prep-release` runs `npm run cleanBuild` followed by `npm run npm-pack`. +- Root `npm run npm-pack` copies `README.md` and `LICENSE` into both publishable packages and then runs Rush `npm-pack`. diff --git a/README.md b/README.md index 5c014f9..ce3157f 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ See [Browser Support](#browser-support) for details on the supported browser env ## Quickstart -Install the npm packare: `npm install @nevware21/ts-debug --save` +Install the recommended npm package version: `npm install @nevware21/ts-debug@0.1.0 --save` And then just import the helpers and use them. From a26a592cfd93c0996ccfcf9c575f5626ac79f11c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 11 May 2026 14:53:07 +0000 Subject: [PATCH 3/4] Keep README install command unpinned Agent-Logs-Url: https://github.com/nevware21/ts-debug/sessions/6be192ee-9d14-4213-ae0d-cd69456fb9f3 Co-authored-by: nev21 <82737406+nev21@users.noreply.github.com> --- .github/copilot-instructions.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index b761e8f..1213d69 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -19,7 +19,7 @@ When preparing a release, always: - `dbg/package.json` - `providers/package.json` - Keep `providers/package.json` aligned with the new `@nevware21/ts-debug` dependency version. -3. Update `README.md` so the recommended install version matches the new release. +3. Update `README.md` for any release-related version references, but keep the Quickstart install command unpinned so it always installs the latest package version. 4. Update `CHANGELIST.md`: - include only the significant changes for the new version - add a full changelist link when one is available diff --git a/README.md b/README.md index ce3157f..5c014f9 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ See [Browser Support](#browser-support) for details on the supported browser env ## Quickstart -Install the recommended npm package version: `npm install @nevware21/ts-debug@0.1.0 --save` +Install the npm packare: `npm install @nevware21/ts-debug --save` And then just import the helpers and use them. From 962943906969dc515c97db6fd378f7676ab195d8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 11 May 2026 14:53:46 +0000 Subject: [PATCH 4/4] Fix README install wording Agent-Logs-Url: https://github.com/nevware21/ts-debug/sessions/6be192ee-9d14-4213-ae0d-cd69456fb9f3 Co-authored-by: nev21 <82737406+nev21@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c014f9..75b1a2c 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ See [Browser Support](#browser-support) for details on the supported browser env ## Quickstart -Install the npm packare: `npm install @nevware21/ts-debug --save` +Install the npm package: `npm install @nevware21/ts-debug --save` And then just import the helpers and use them.