Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@
"build:local": "node scripts/generate-constants.cjs config/dev.network.config.json && tsup",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"generate:constants": "node scripts/generate-constants.cjs",
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

removing this command because this script requires an argument, and nothing is passed here. So the program exits without doing anything

"prepublishOnly": "npm run typecheck && npm run clean && npm run build",
"dev": "node scripts/generate-constants.cjs config/dev.network.config.json && tsx watch src/index.ts",
"dev:worker": "node scripts/generate-constants.cjs config/dev.network.config.json && tsx watch src/worker.ts",
"dev:cli": "tsx src/commands/index.ts",
"dev:api": "tsx src/cli/index.ts",
"dev:satellite-cli": "node scripts/generate-constants.cjs config/dev.network.config.json && tsx src/cli/index.ts",
"dev:worker": "node scripts/generate-constants.cjs config/dev.network.config.json && tsx watch src/worker.ts",
"dev:ddctl": "tsx src/commands/index.ts",
"start:api": "NODE_ENV=production node dist/index.js",
"start:worker": "NODE_ENV=production node dist/worker.js",
"lint": "eslint . --ext .ts,.js",
Expand Down