From 50dd571f59fb2df9935f36b27fdbf3fb71f899ce Mon Sep 17 00:00:00 2001 From: ngryman Date: Sun, 29 Nov 2020 13:36:24 +0100 Subject: [PATCH] build(npm): publish the cli as binary --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 2ba7c17..ea4e752 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,9 @@ "main": "dist/fauda.js", "module": "dist/fauda.modern.js", "types": "dist/fauda.d.ts", + "bin": { + "fauda": "dist/cli.js" + }, "scripts": { "build:cli": "microbundle cli.ts -o dist/cli.js -f cjs --target node", "build:library": "microbundle index.ts -f modern,cjs --target node",