Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sqlc-dev/setup-sqlc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7247af2
Choose a base ref
...
head repository: sqlc-dev/setup-sqlc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 28055c4
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on Apr 8, 2026

  1. Upgrade @actions/core to v3 and @actions/tool-cache to v4

    These packages are now ESM-only, which is incompatible with @vercel/ncc's
    CJS bundling. Switch the bundler from ncc to esbuild, set package type to
    "module", update tsconfig to use node16 module resolution, and rename
    jest.config.js to jest.config.cjs for CJS compatibility.
    
    https://claude.ai/code/session_01QwnXfWH2ELHXvNgijYTeM1
    claude committed Apr 8, 2026
    Configuration menu
    Copy the full SHA
    0de7c93 View commit details
    Browse the repository at this point in the history
  2. Fix CI: use bundler module resolution instead of ESM package type

    The "type": "module" in package.json caused the CJS esbuild bundle to be
    parsed as ESM at runtime, breaking require() calls for Node.js built-ins.
    Instead, use moduleResolution: "bundler" in tsconfig which resolves ESM
    exports fields correctly while keeping the project as CJS. Revert
    jest.config.cjs back to jest.config.js.
    
    https://claude.ai/code/session_01QwnXfWH2ELHXvNgijYTeM1
    claude committed Apr 8, 2026
    Configuration menu
    Copy the full SHA
    28055c4 View commit details
    Browse the repository at this point in the history
Loading