Skip to content

Commit f0c2190

Browse files
committed
Fix wrong bin CLI path in package.json
1 parent 4943958 commit f0c2190

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.changeset/soft-baboons-hunt.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'codama': patch
3+
'@codama/errors': patch
4+
---
5+
6+
Fix wrong bin CLI path in package.json

packages/errors/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"react-native": "./dist/index.react-native.mjs",
2424
"types": "./dist/types/index.d.ts",
2525
"type": "commonjs",
26-
"bin": "./bin/cli.mjs",
26+
"bin": "./bin/cli.cjs",
2727
"files": [
2828
"./bin",
2929
"./dist/types",

packages/library/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"react-native": "./dist/index.react-native.mjs",
2727
"types": "./dist/types/index.d.ts",
2828
"type": "commonjs",
29-
"bin": "./bin/cli.mjs",
29+
"bin": "./bin/cli.cjs",
3030
"files": [
3131
"./bin",
3232
"./dist/types",

0 commit comments

Comments
 (0)