-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathdeno.json
More file actions
63 lines (63 loc) · 1.65 KB
/
deno.json
File metadata and controls
63 lines (63 loc) · 1.65 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"lock": false,
"fmt": {
"exclude": [
"tests/assets",
"deps/katex-auto-render",
"CHANGELOG.md",
"CHANGELOGv3.md"
]
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "lume",
"types": [
"./types.ts"
]
},
"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 LUME_NOCACHE=true deno test -A"
},
"test:update": {
"description": "Update all tests snapshots",
"command": "TZ=Z LUME_NOCACHE=true 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/changelog@v3.0.2/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/nudd@v0.2.11/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"
}
},
"unstable": [
"temporal"
],
"imports": {
"lume/": "./",
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@0.14.16/",
"lume/jsx-runtime": "https://deno.land/x/ssx@v0.1.14/jsx-runtime.ts"
},
"lint": {
"rules": {
"exclude": [
"no-import-prefix"
]
},
"plugins": [
"./lint.ts"
]
},
"allowScripts": {
"deny": [
"npm:sharp"
]
}
}