From 483fe363c15067b1374e382db936aa2b45603934 Mon Sep 17 00:00:00 2001 From: Cobus Greyling Date: Thu, 11 Jun 2026 09:59:27 +0200 Subject: [PATCH] fix(loop-cost): correct npm bin path for publish (v1.0.1) --- tools/loop-cost/package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/loop-cost/package.json b/tools/loop-cost/package.json index 9b39765..a05fac9 100644 --- a/tools/loop-cost/package.json +++ b/tools/loop-cost/package.json @@ -1,10 +1,10 @@ { "name": "@cobusgreyling/loop-cost", - "version": "1.0.0", + "version": "1.0.1", "description": "Estimate daily token spend for loop engineering patterns by cadence and readiness level.", "type": "module", "bin": { - "loop-cost": "./dist/cli.js" + "loop-cost": "dist/cli.js" }, "files": [ "dist", @@ -13,7 +13,7 @@ ], "scripts": { "bundle": "node scripts/bundle-registry.mjs", - "build": "npm run bundle && tsc", + "build": "npm run bundle && tsc && chmod +x dist/cli.js", "test": "npm run build && node --test test/estimator.test.mjs", "prepublishOnly": "npm test", "start": "node dist/cli.js"