From df5cc36c1397a67234bbbbef9a75629562f893e9 Mon Sep 17 00:00:00 2001 From: Apteryx Date: Tue, 29 Oct 2024 15:35:01 +1300 Subject: [PATCH] Fix cli package bin file path --- .changeset/nine-wolves-join.md | 5 +++++ packages/cli/package.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/nine-wolves-join.md diff --git a/.changeset/nine-wolves-join.md b/.changeset/nine-wolves-join.md new file mode 100644 index 0000000..f00c33e --- /dev/null +++ b/.changeset/nine-wolves-join.md @@ -0,0 +1,5 @@ +--- +"next-ws-cli": patch +--- + +Fix cli package bin file path diff --git a/packages/cli/package.json b/packages/cli/package.json index 45dab1c..c54227f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -15,7 +15,7 @@ "url": "https://github.com/apteryxxyz/next-ws/issues" }, "files": ["dist"], - "bin": "./dist/program.cjs", + "bin": "./dist/program.js", "scripts": { "check": "tsc --noEmit", "build": "cp ../../readme.md . && tsup",