fix(vite-plugin-angular): remove stale esbuild export#2379
fix(vite-plugin-angular): remove stale esbuild export#237982040613-spec wants to merge 1 commit into
Conversation
The 2.x package exports ./esbuild to ./esbuild.js, but the published package no longer includes that file. Remove the stale subpath export so consumers do not resolve to a missing file.
✅ Deploy Preview for analog-blog ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for analog-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
✅ Deploy Preview for analog-app ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThis PR removes the Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes 🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 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 |
Summary
Removes the stale
./esbuildsubpath export from@analogjs/vite-plugin-angular.The 2.x package manifest currently points
./esbuildto./esbuild.js, but published 2.x packages no longer include that file. Importing@analogjs/vite-plugin-angular/esbuildtherefore resolves to a missing file and fails withERR_MODULE_NOT_FOUND.Notes
1.22.5includedesbuild.js/esbuild.d.ts.2.0.0through2.6.1no longer include those files but still keep the export.3.0.0-alpha.59no longer exports./esbuild.Fixes #2377.