Warning
This project is currently in public beta and is therefore not yet stable.
Note
The entry point can be either a directory or file. You can also specify multiple files and/or directories.
deno run -Ar https://den.ooo/[email protected]/mod.ts ./deno.json
--breaking
/-b
: allow breaking updates (major releases)--unstable
/-u
: allow unstable updates (prereleases)--changelog
/-c
: create changelog (updates_changelog.md)--dry-run
/--readonly
: don't apply updates
⚠️ breaking
This update might break your code.- 🚧 unstable
This is a prerelease and might therefore come with unwanted issues. - 🤞 early
This module doesn't strictly adhere to semver yet, so this version might break your code.
-
To ignore a particular import, you can append
#pin
to the url.import * as semver from 'https://deno.land/[email protected]/semver/mod.ts#pin'
-
To override the default behavior, you can append a SemVer range to the url.
import cheetah from 'https://deno.land/x/[email protected]/mod.ts#~v1.5'
-
[!IMPORTANT]
npm imports are treated slightly different. If you want to pin a dependency, you must specify an exact version, e.g.npm:[email protected]
, and if you want to make a dependency updatable, you must add a preceding^
, e.g.npm:example@^1.0.0
.