From 30f692956ca0c42b3bf09a46eb0371059221957d Mon Sep 17 00:00:00 2001 From: Nick Bradley Date: Tue, 4 Aug 2026 12:40:41 +0100 Subject: [PATCH] fix: drop ./ prefix from bin path npm 12's publish-time fixer treats "./dist/index.js" as invalid and strips the bin entry from the registry manifest entirely, which would break `npx @cloudinary/cloud`. Matches `npm pkg fix` output. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0558e93..78bd3d6 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "One command to get a disposable Cloudinary cloud account — no signup required", "type": "module", "bin": { - "cloudinary-cloud": "./dist/index.js" + "cloudinary-cloud": "dist/index.js" }, "main": "./dist/lib/index.js", "types": "./dist/lib/index.d.ts",