mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
f184332c09
* Prepend underscores to private modules * Remove collectUint8Arrays() It would be a misuse of Deno.iter()'s result. * Move std/_util/async.ts to std/async * Move std/util/sha*.ts to std/hash
22 lines
568 B
Markdown
22 lines
568 B
Markdown
## Reloading modules
|
|
|
|
You can invalidate your local `DENO_DIR` cache using the `--reload` flag. It's
|
|
usage is described below:
|
|
|
|
To reload everything
|
|
|
|
`--reload`
|
|
|
|
Sometimes we want to upgrade only some modules. You can control it by passing an
|
|
argument to a `--reload` flag.
|
|
|
|
To reload all standard modules
|
|
|
|
`--reload=https://deno.land/std`
|
|
|
|
To reload specific modules (in this example - colors and file system copy) use a
|
|
comma to separate URLs
|
|
|
|
`--reload=https://deno.land/std/fs/copy.ts,https://deno.land/std/fmt/colors.ts`
|
|
|
|
<!-- Should this be part of examples? --
|