MariusVatasoiu
MariusVatasoiu
DDeno
Created by MariusVatasoiu on 3/19/2024 in #help
esbuild-deno-loader with npm private registry
Did anyone used the esbuild-deno-loader with npm: specifier while using a private npm registry that requires authentication? Does Deno use the npmrc in any way? I saw the option to set a custom registry, but what about the credentials? I'm getting the "Module not found" error and not sure why. I have the feeling it's a network issue, but the error is too vague.
8 replies
DDeno
Created by MariusVatasoiu on 4/6/2023 in #help
Issue using scopes to change a version
I'm using https://deno.land/x/markdown@v2.0.0/ and I get the following error:
Warning Implicitly using latest version (0.182.0) for https://deno.land/std/encoding/_yaml/loader/loader.ts
error: Module not found "https://deno.land/std/encoding/_yaml/loader/loader.ts".
Warning Implicitly using latest version (0.182.0) for https://deno.land/std/encoding/_yaml/loader/loader.ts
error: Module not found "https://deno.land/std/encoding/_yaml/loader/loader.ts".
I added scopes to deno.config, but doesn't seems to work:
"scopes": {
"https://deno.land/x/markdown": {
"https://deno.land/std/": "https://deno.land/std@0.179.0/"
}
}
"scopes": {
"https://deno.land/x/markdown": {
"https://deno.land/std/": "https://deno.land/std@0.179.0/"
}
}
Am I doing something wrong here?
7 replies