-
Notifications
You must be signed in to change notification settings - Fork 129
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
Unable to run my project due to unavailable dep #348
Comments
opened a quick pull request a 2w ago to address this issues. |
Yes, I use your repo as import URL since I opened this issue |
@LoganTann @Aiko-Suzuki which version of deno you are using? because with the fix that @Aiko-Suzuki did, I got these errors now:
I'm using deno v1.21.3 |
@slim-hmidi i use 1.23 may upgrade my project to latest soon |
it's clear, because even in the PR check there are the same log errors, you can check them https://github.com/eveningkid/denodb/pull/347/checks |
Yeah those error are not new even without the PR #337 😕 |
you can run with with "--no-check" if below 1.23. if you are using 1.23 you don't need to https://deno.com/blog/v1.23 since the check is only local by default |
1.22.1 in my side |
Is there any progress on this issue? I see a pull request has been open but has not yet been merged. |
The maintainer seems to not be actif :/ |
I've implemented the pull request on my own fork of the project if anyone needs it and doesn't want to do it themselves. Here is an example of the import to use for the fixed version while we wait for the pull request. import { Relationships, DataTypes, Database, Model, SQLite3Connector } from 'https://raw.githubusercontent.com/joeldesante/denodb/master/mod.ts'; |
There is a new error with your workaround (at least today):
|
I havn't been able to reproduce this error. Are you sure you have everything correct on your end? |
Yes, sorry nevermind. I think I was missing something on my end. Thanks for the workaround! |
Still seeing this:
|
workaround: {
"imports": {
"https://dev.jspm.io/npm:@jspm/core@1/nodelibs/timers.js": "https://ga.jspm.io/npm:@jspm/[email protected]/nodelibs/deno/timers.ts",
"https://dev.jspm.io/[email protected]": "https://ga.jspm.io/npm:[email protected]/inherits.js",
},
"scopes": {
"https://ga.jspm.io/": {
"util": "https://ga.jspm.io/npm:@jspm/[email protected]/nodelibs/deno/util.ts"
}
}
} |
it works! |
Thanks for the fix but where do I put this ?? |
@SirWrexes the code block I put my previous comment goes into a In the |
I tried to add
denodb
to my project, but a dependency seems unavailable.error: Import 'https://dev.jspm.io/npm:@jspm/core@1/nodelibs/timers.js' failed: 500 Internal Server Error
steps to reproduce
docker-compose up
The text was updated successfully, but these errors were encountered: