-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
20 lines (20 loc) · 627 Bytes
/
Copy pathdeno.jsonc
File metadata and controls
20 lines (20 loc) · 627 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"lock": false,
"tasks": {
"cache": "deno install --reload",
"check": "deno check denops/**/*.ts",
"fmt": "deno fmt denops",
"lint": "deno lint denops",
"lint-fix": "deno lint --fix denops",
"test": "deno test -A --doc --parallel --shuffle denops/**/*.ts",
"test:publish": "deno publish --dry-run --allow-dirty --set-version 0.0.0",
"update": "deno outdated --recursive",
"upgrade": "deno outdated --recursive --update"
},
"workspace": [
"./denops/ddt",
"./denops/@ddu-kinds/ddt_tab",
"./denops/@ddu-sources/ddt_tab",
"./denops/@ddu-sources/ddt_shell_history"
]
}