From 7082f45ad9db9d16ae672ec86fa3a9f0c9c64a12 Mon Sep 17 00:00:00 2001 From: rrader26 Date: Sun, 10 May 2026 15:55:16 -0400 Subject: [PATCH] chore(piece): pin @thinkfleet/agentmark to ^0.11.0 for publishing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The monorepo-dev `file:../..` link was correct during PR review (kept the piece pinned to the in-tree version), but npm won't accept a file: dep on publish — it requires a real version range pointing at the registry. Now that `@thinkfleet/agentmark@0.11.0` is on its way to npm, the piece can ship pointing at the published version. Co-Authored-By: Claude Opus 4.7 (1M context) --- pieces/agentmark/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pieces/agentmark/package.json b/pieces/agentmark/package.json index e24f1de..8daa492 100644 --- a/pieces/agentmark/package.json +++ b/pieces/agentmark/package.json @@ -31,11 +31,11 @@ "README.md" ], "dependencies": { - "@thinkfleet/agentmark": "file:../..", + "@thinkfleet/agentmark": "^0.11.0", "tslib": "^2.3.0", "undici": "^7.0.0" }, - "_publishing_note": "@thinkfleet/agentmark is `file:../..` for in-monorepo development; bump to ^0.7.0 (or whatever version is on npm) before publishing this piece.", + "_dev_note": "Use `npm install file:../..` after cloning to develop locally against the monorepo source.", "peerDependencies": { "@activepieces/pieces-framework": ">=0.7.0", "playwright-core": ">=1.40.0"