Skip to content

Commit

Permalink
fix(cli): Module errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdip-b committed Jan 9, 2025
1 parent a7742b1 commit a639065
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"type": "module",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --outdir=dist --outfile=index.esm.js --format=esm --banner:js='#!/usr/bin/env node' && esbuild src/index.ts --bundle --platform=node --outdir=dist --outfile=index.cjs --format=cjs --banner:js='#!/usr/bin/env node'",
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.esm.js --format=esm --banner:js='#!/usr/bin/env node' && esbuild src/index.ts --bundle --platform=node --outfile=dist/index.cjs --format=cjs --banner:js='#!/usr/bin/env node'",
"start": "node dist/index.js",
"dev": "pnpm build && node dist/index.js",
"lint": "eslint \"src/**/*.ts\" --fix",
Expand Down

0 comments on commit a639065

Please sign in to comment.