This script will replace JavaScript/TypeScript files in the cache to files in the particular directory.
$ deno install -n deno-cache-injector --allow-env --allow-read --allow-write https://deno.land/x/[email protected]/injector.ts
Here's an overview of how deno-cache-injector uses permissions:
Permission | Description |
---|---|
env |
Access to $HOME for resolve cache path |
read |
Read <libpath> |
write |
Write cache |
deno-cache-injector <option>... <libpath> <liburl>
Option | Description |
---|---|
-d | Delete cache (Only files that exists in <libpath> |
-s | Use symbolic link |
-v | Display verbose log |
Argument | Description |
---|---|
<libpath> |
A local directory path which is used to replace the cache |
<liburl> |
A base URL of a library in the cache to replace |
deno-cache-injector ./denops-std-deno https://deno.land/x/[email protected]
or
deno-cache-injector -s ./denops-std-deno https://deno.land/x/[email protected]
This project is licensed under the MIT License. See LICENSE for details.