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 can't access imports like this:
import { ... } from 'https://deno.land/std@v0.63.0/fmt/colors.ts';
This results in an error when trying to run a script that uses cliffy:
Download https://deno.land/std@v0.63.0/fmt/colors.ts error: Import 'https://deno.land/std@v0.63.0/fmt/colors.ts' failed: 403 Forbidden
Local dev environments are not likely to be affected due to caching; however, running scripts on new machines does display this error.
The official Deno docs do not include the "v" in the import. See https://deno.land/std@0.63.0/fmt/colors.ts
Updating imports to use a version without the "v" prefix allows the import to work:
import { ... } from 'https://deno.land/std@0.63.0/fmt/colors.ts';
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Deno can't access imports like this:
This results in an error when trying to run a script that uses cliffy:
Local dev environments are not likely to be affected due to caching; however, running scripts on new machines does display this error.
The official Deno docs do not include the "v" in the import. See https://deno.land/std@0.63.0/fmt/colors.ts
Updating imports to use a version without the "v" prefix allows the import to work:
The text was updated successfully, but these errors were encountered: