-
Notifications
You must be signed in to change notification settings - Fork 5.4k
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
Deprecate deno vendor
and replace with "vendor": true
?
#20584
Comments
Wouldn't that make it mandatory to have a |
That flag exists today. Read more here: https://deno.com/blog/v1.37#vendor-as-cache-override-unstable |
Oops I missed that. Thanks! |
What's the current stance on this? |
To deprecate |
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
Currently, the |
We'll deprecate |
Currently, deno cache can put jsr packages under |
Deno 1.37 (and actually some earlier versions) has the ability to vendor by specifying the following in a deno.json:
After running your program or caching (ex.
deno cache mod.ts
), a./vendor
folder will be automatically populated with the remote dependencies.This is considerably easier to use than
deno vendor
and we should consider deprecatingdeno vendor
in favour of this feature and move the existingdeno vendor
out into a separate tool.The text was updated successfully, but these errors were encountered: