Skip to content

Commit 77cf03f

Browse files
thomasballingerConvex, Inc.
authored andcommitted
Fix two broken build scripts (#41317)
GitOrigin-RevId: 832d2ab022fbc9e9015818d4c0c283d7a7d9262f
1 parent 5e77370 commit 77cf03f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

npm-packages/components/ratelimiter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"build": "npm run build:esm && npm run build:cjs",
77
"build:esm": "tsc --project ./esm.json && echo '{\\n \"type\": \"module\"\\n}' > dist/esm/package.json",
8-
"build:cjs": "tsc --project ./commonjs.json && echo '{\\n \"type\": \"commonjs\"\\n}' > dist/esm/package.json",
8+
"build:cjs": "tsc --project ./commonjs.json && echo '{\\n \"type\": \"commonjs\"\\n}' > dist/commonjs/package.json",
99
"typecheck": "tsc --noEmit",
1010
"lint": "eslint .",
1111
"dev": "convex dev",

npm-packages/components/triggers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"scripts": {
66
"build": "npm run build:esm && npm run build:cjs",
77
"build:esm": "tsc --project ./esm.json && echo '{\\n \"type\": \"module\"\\n}' > dist/esm/package.json",
8-
"build:cjs": "tsc --project ./commonjs.json && echo '{\\n \"type\": \"commonjs\"\\n}' > dist/esm/package.json",
8+
"build:cjs": "tsc --project ./commonjs.json && echo '{\\n \"type\": \"commonjs\"\\n}' > dist/commonjs/package.json",
99
"typecheck": "tsc --noEmit",
1010
"dev": "convex dev",
1111
"prepare": "npm run build"

0 commit comments

Comments
 (0)