Skip to content
New issue

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

importmap miss dependency etc. for zxing, html5-qrcode and others. #288

Open
piti118 opened this issue Jan 29, 2025 · 2 comments
Open

importmap miss dependency etc. for zxing, html5-qrcode and others. #288

piti118 opened this issue Jan 29, 2025 · 2 comments

Comments

@piti118
Copy link

piti118 commented Jan 29, 2025

This could be construed as jspm(the default --from) issue. But most of bin/importmap pin @zxing/browser will miss all the relative dependency that jspm use.

Image

This is example of https://ga.jspm.io/npm:@zxing/[email protected]/esm/index.js which try to load relative path.

This makes importmap essentially unusable for vast variety of packages. May be it's time to change the default --from to something that works more reliably.

Just my 2 cents.

@piti118
Copy link
Author

piti118 commented Jan 29, 2025

Similar to #264 #283. Related to #235

@piti118
Copy link
Author

piti118 commented Jan 29, 2025

Just for those who stumble upon this in the future. Here is a workaround-ish.

pin "@zxing/browser", to: "https://ga.jspm.io/npm:@zxing/[email protected]/esm/index.js"
pin "@zxing/library", to: "https://ga.jspm.io/npm:@zxing/[email protected]/esm/index.js"
pin "ts-custom-error", to: "https://ga.jspm.io/npm:[email protected]/dist/custom-error.mjs"

How did I figure this out ... go to the generator, put in package name, copy the URL in import map + everything in scope and flatten it here. It's not locally loaded but at least it works since all the relative path it uses will be correctly resolved to jspm. This manual workaround should work for any package.

https://generator.jspm.io/#U2VhYGBkDM0rySzJSU1hcKiqyMxL108qyi8vTi1yMNAz1DMFABPnoB0jAA

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

No branches or pull requests

1 participant