0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/docs/linking_to_external_code/reloading_modules.md

23 lines
569 B
Markdown
Raw Normal View History

2020-05-06 18:21:13 -04:00
## 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
2020-05-06 18:21:13 -04:00
`--reload=https://deno.land/std/fs/copy.ts,https://deno.land/std/fmt/colors.ts`
2020-05-06 18:21:13 -04:00
2020-05-18 15:53:25 -04:00
<!-- Should this be part of examples? -->