mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 23:24:37 +00:00
Multi page manual (#5110)
This commit is contained in:
parent
846c049c9b
commit
34ec3b2254
40 changed files with 1994 additions and 1695 deletions
22
docs/linking_to_external_code/reloading_modules.md
Normal file
22
docs/linking_to_external_code/reloading_modules.md
Normal file
|
@ -0,0 +1,22 @@
|
|||
## 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 utils) use
|
||||
a comma to separate URLs
|
||||
|
||||
`--reload=https://deno.land/std/fs/utils.ts,https://deno.land/std/fmt/colors.ts`
|
||||
|
||||
<!-- Should this be part of examples? --
|
Loading…
Add table
Add a link
Reference in a new issue