From d2170c3dd0b4fe3df853f5eb3967498457d1db15 Mon Sep 17 00:00:00 2001 From: ladybluenotes Date: Sat, 28 Mar 2026 13:35:44 -0700 Subject: [PATCH 1/2] fix ci? --- .changeset/shaggy-yaks-enter.md | 8 ++++++++ package.json | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .changeset/shaggy-yaks-enter.md diff --git a/.changeset/shaggy-yaks-enter.md b/.changeset/shaggy-yaks-enter.md new file mode 100644 index 0000000..17c6a25 --- /dev/null +++ b/.changeset/shaggy-yaks-enter.md @@ -0,0 +1,8 @@ +--- +'@tanstack/intent': patch +--- +- Fix workspace package discovery for nested glob patterns, including support for `*` and `**`. Workspace patterns and resolved package roots are now normalized, deduped, and sorted, and the shared resolver has been extracted for reuse by internal workspace scanning. ([#93](https://github.com/TanStack/intent/pull/93)) + +- Refactor @tanstack/intent to use a shared project context resolver for workspace and package detection. This fixes monorepo targeting bugs in validate and edit-package-json, including pnpm workspaces defined only by pnpm-workspace.yaml. ([#93](https://github.com/TanStack/intent/pull/93)) + +- Use stable `node_modules//...` paths for skill references instead of absolute filesystem paths containing package-manager-internal directories with version numbers. Paths no longer break when packages are updated. ([#94](https://github.com/TanStack/intent/pull/94)) diff --git a/package.json b/package.json index 0398d36..d05e199 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "private": true, "repository": { "type": "git", - "url": "git+https://github.com/TanStack/intent.git" + "url": "https://github.com/TanStack/intent.git" }, "packageManager": "pnpm@10.26.1", "type": "module", From 66ae3b460b1f498e06f53895012f9f4933be79be Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 28 Mar 2026 20:38:14 +0000 Subject: [PATCH 2/2] ci: apply automated fixes --- .changeset/shaggy-yaks-enter.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.changeset/shaggy-yaks-enter.md b/.changeset/shaggy-yaks-enter.md index 17c6a25..0aa1a97 100644 --- a/.changeset/shaggy-yaks-enter.md +++ b/.changeset/shaggy-yaks-enter.md @@ -1,6 +1,7 @@ --- '@tanstack/intent': patch --- + - Fix workspace package discovery for nested glob patterns, including support for `*` and `**`. Workspace patterns and resolved package roots are now normalized, deduped, and sorted, and the shared resolver has been extracted for reuse by internal workspace scanning. ([#93](https://github.com/TanStack/intent/pull/93)) - Refactor @tanstack/intent to use a shared project context resolver for workspace and package detection. This fixes monorepo targeting bugs in validate and edit-package-json, including pnpm workspaces defined only by pnpm-workspace.yaml. ([#93](https://github.com/TanStack/intent/pull/93))