We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0a3bd4 commit 9cf397eCopy full SHA for 9cf397e
.github/workflows/test.yml
@@ -78,6 +78,8 @@ jobs:
78
${DENOPS_TEST_NVIM} --version
79
env:
80
DENOPS_TEST_NVIM: ${{ steps.nvim.outputs.executable }}
81
+ - name: Perform pre-cache
82
+ run: deno cache ./denops/@denops-private/mod.ts
83
- name: Test
84
run: deno task test:coverage
85
denops/@denops-private/mod.ts
@@ -0,0 +1,11 @@
1
+/**
2
+ * Denops entry file to perform pre-cache from CLI.
3
+ *
4
+ * ```
5
+ * deno cache /path/to/denops.vim/denops/@denops-private/mod.ts
6
7
8
+ * @module
9
+ */
10
+export * from "./cli.ts";
11
+export * from "./worker.ts";
0 commit comments