Skip to content

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

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

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
Copy link
Copy Markdown

@qiushile qiushile commented May 19, 2026

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. 👍

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

Labels

None yet

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