We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Repro:
main.js:
import { nonexisting } from "./lib" console.log(nonexisting)
lib.js
export const a = 1
Run estrella:
$ estrella -bundle -o=out.js main.js > main.js: error: No matching export for import "nonexisting" 1 │ import { nonexisting } from "./lib" ╵ ~~~~~~~~~~~ ../../dist/estrella.g.js: TypeError: Cannot convert undefined or null to object at Function.keys (<anonymous>) at refreshFiles (/Users/rsms/src/src/watch/watch.ts:62:29) at Object.watchFiles (/Users/rsms/src/src/watch/watch.ts:106:3) at build1 (/Users/rsms/src/src/estrella.js:769:23) at processTicksAndRejections (internal/process/task_queues.js:93:5)
This happens because esbuild doesn't produce a valid (i.e. what estrella expects) metadata file when the build fails.
The text was updated successfully, but these errors were encountered:
84bd679
Published in v1.3.0
Sorry, something went wrong.
rsms
No branches or pull requests
Repro:
main.js:
lib.js
Run estrella:
This happens because esbuild doesn't produce a valid (i.e. what estrella expects) metadata file when the build fails.
The text was updated successfully, but these errors were encountered: