-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
deno.json
35 lines (35 loc) · 1.15 KB
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"lock": false,
"fmt": {
"exclude": [
"tests/assets",
"deps/katex-auto-render",
"CHANGELOG.md"
]
},
"tasks": {
"test": {
"description": "Run all Lume tests. You can run only one test with `deno task test tests/<filename>`",
"command": "TZ=Z LUME_LOGS=ERROR DENO_FUTURE=1 deno test -A"
},
"test:update": {
"description": "Update all tests snapshots",
"command": "deno task test -- --update"
},
"changelog": {
"description": "Run the changelog utility to format the CHANGELOG.md file",
"command": "deno run --allow-read --allow-write https://deno.land/x/[email protected]/bin.ts"
},
"update": {
"description": "Run the nudd utility to update dependencies. I.e. `deno task update deps/dom.ts`",
"command": "deno run -A --quiet 'https://deno.land/x/[email protected]/cli.ts' update"
},
"update-deps": {
"description": "Update all dependencies to the latest version. Add `--dry-run` to don't write the changes",
"command": "deno task update deps/*.ts deno.json"
}
},
"imports": {
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/[email protected]/"
}
}