美文网首页
4.1 deno重新加载模块

4.1 deno重新加载模块

作者: 9e8aeff1c70c | 来源:发表于2021-05-12 09:14 被阅读0次

    重新加载模块

    默认情况下,缓存中的模块将在不获取或重新编译的情况下重复使用。有时,这是不可取的,你可以强迫 deno 将模块重新插入缓存并重新编译。您可以使用子通信的标记使本地缓存失效。其用法如下:DENO_DIR``--reload``deno cache

    重新加载所有内容

    deno cache --reload my_module.ts
    

    重新加载特定模块

    有时我们只想升级一些模块。您可以通过将参数传递给标志来控制它。--reload

    要重新加载所有 +0.95.0 标准模块:

    deno cache --reload=https://deno.land/std@0.95.0 my_module.ts
    

    要重新加载特定模块(在此示例中 - 颜色和文件系统副本),请使用逗号来分离 URL。

    deno cache --reload=https://deno.land/std@0.95.0/fs/copy.ts,https://deno.land/std@0.95.0/fmt/colors.ts my_module.ts
    

    相关文章

      网友评论

          本文标题:4.1 deno重新加载模块

          本文链接:https://www.haomeiwen.com/subject/poserltx.html