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
$ deno --version deno 2.1.4 (stable, release, aarch64-apple-darwin) v8 13.0.245.12-rusty typescript 5.6.2
My package.json contains
package.json
{ // ... "devDependencies": { // ... "odh-dashboard-frontend": "https://github.com/opendatahub-io/odh-dashboard.git#semver:v2.29.0&path:/frontend",
This package installs fine with pnpm, but with deno install, it is not installed, and I get a Warning about it.
pnpm
deno install
$ deno install Warning Not implemented scheme 'https' at file:///Users/jdanek/IdeaProjects/notebooks/tests/deno/package.json
Possibly related issue
The text was updated successfully, but these errors were encountered:
What schemes are actually implemented?
Looking at https://github.com/denoland/deno/blob/v2.1.4/tests/specs/install/invalid_scheme/install.out, git: cannot be used either.
git:
edit: looks like all these are not implemented https://github.com/denoland/deno_package_json/blob/0.4.0/src/lib.rs#L618-L620
Sorry, something went wrong.
No branches or pull requests
My
package.json
containsThis package installs fine with
pnpm
, but withdeno install
, it is not installed, and I get a Warning about it.Possibly related issue
The text was updated successfully, but these errors were encountered: