Skip to content

fix(opencode): rename bin entry to .cjs for ESM compatibility - #28342

Closed
qiushile wants to merge 4 commits into
anomalyco:devfrom
qiushile:fix/opencode-cjs-entry
Closed

fix(opencode): rename bin entry to .cjs for ESM compatibility#28342
qiushile wants to merge 4 commits into
anomalyco:devfrom
qiushile:fix/opencode-cjs-entry

Conversation

@qiushile

@qiushile qiushile commented May 19, 2026

Copy link
Copy Markdown

Issue for this PR

Closes #28343

Type of change

  • Bug fix

What does this PR do?

The bin/opencode launcher uses CommonJS require() syntax, but package.json declares "type": "module". Node.js resolves the file as ESM and fails with ReferenceError: require is not defined.

Renaming to .cjs tells Node.js to treat the launcher as CommonJS regardless of the package type, which is the standard approach for mixed CJS/ESM packages.

How did you verify your code works?

Verified node bin/opencode.cjs --version returns 1.15.5 successfully on Linux x64 with Node.js v24.

Screenshots / recordings

N/A (no UI changes)

Checklist

  • I have tested my changes locally
  • I have not included unrelated changes in this PR

The bin/opencode launcher uses CommonJS require() syntax but
package.json declares "type": "module" (ESM). Node.js fails with
"require is not defined" when running the binary in ESM mode.

Renaming to .cjs tells Node.js to treat this file as CommonJS
regardless of the package type, which is the standard approach
for mixed CJS/ESM packages.
@github-actions

Copy link
Copy Markdown
Contributor

Thanks for your contribution!

This PR doesn't have a linked issue. All PRs must reference an existing issue.

Please:

  1. Open an issue describing the bug/feature (if one doesn't exist)
  2. Add Fixes #<number> or Closes #<number> to this PR description

See CONTRIBUTING.md for details.

@github-actions github-actions Bot added needs:compliance This means the issue will auto-close after 2 hours. and removed needs:issue needs:compliance This means the issue will auto-close after 2 hours. labels May 19, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Thanks for updating your PR! It now meets our contributing guidelines. 👍

@github-actions

Copy link
Copy Markdown
Contributor

Automated PR Cleanup

Thank you for contributing to opencode.

Due to the high volume of PRs from users and AI agents, we periodically close older PRs using automated criteria so maintainers can focus review time on the most active and community-supported contributions.

This PR was closed because it matched the following cleanup criteria:

  • The PR was created more than 1 month ago
  • The PR had fewer than 2 positive reactions
  • Positive reactions are counted as thumbs-up, heart, celebration, or rocket reactions on the PR

PRs created within the last month are not affected by this cleanup.

If you believe this PR was closed incorrectly, or if you are still actively working on it, please leave a comment explaining why it should be reopened. A maintainer can review and reopen it if appropriate.

Thanks again for taking the time to contribute.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

bin/opencode fails with 'require is not defined' in ESM packages

1 participant