From 34ec3b225425cecdccf754fbc87f4a8f3728890d Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Thu, 7 May 2020 00:21:13 +0200 Subject: Multi page manual (#5110) --- docs/linking_to_external_code/reloading_modules.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 docs/linking_to_external_code/reloading_modules.md (limited to 'docs/linking_to_external_code/reloading_modules.md') diff --git a/docs/linking_to_external_code/reloading_modules.md b/docs/linking_to_external_code/reloading_modules.md new file mode 100644 index 000000000..6589ea6bc --- /dev/null +++ b/docs/linking_to_external_code/reloading_modules.md @@ -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` + +