fix: remove invalid module field#18
Conversation
|
|
|
@rupayon123 is attempting to deploy a commit to the promplate Team on Vercel. A member of the Team first needs to authorize it. |
There was a problem hiding this comment.
Code Review
This pull request removes the "module" field from package.json, which previously pointed to "dist/index.js". There are no review comments, and I have no feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
💤 Files with no reviewable changes (1)
📝 WalkthroughRemoved the top-level WalkthroughThis change updates package publishing metadata by removing the top-level Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
commit: |
|
Closing this in favor of #21, which is the cleaner current version of the same package entry fix. |
Fixes #16
The package currently builds CommonJS output only, so
modulepoints at the same CommonJS file asmain. This removes themodulefield so bundlers do not treatdist/index.jsas an ES module entry.Checks:
git diff --checknode -e 'JSON.parse(require("fs").readFileSync("package.json", "utf8")); console.log("package.json ok")'