-
Notifications
You must be signed in to change notification settings - Fork 60
/
deno.json
27 lines (27 loc) · 1019 Bytes
/
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
{
"tasks": {
"build": "cp LICENSE js/LICENSE && deno run -A jsr:@deno/[email protected] --project deno_doc_wasm --out js",
"test": "deno test -A",
"tailwind": "deno run -A build_css.ts",
"gen_html": "cargo run --example ddoc -- --name=gen_html --output generated_docs/ --html",
"debug": "deno task tailwind && deno task doc ./tests/testdata/multiple/*",
"test:update": "UPDATE=1 cargo test --locked --all-targets && cargo insta test --accept"
},
"workspace": ["js"],
"exclude": ["target", "benches/fixtures"],
"fmt": {
"exclude": ["**/*.gen.css", "generated_docs"]
},
"lint": {
"exclude": ["src/html", "tests/testdata"]
},
"imports": {
"@david/dax": "jsr:@david/[email protected]",
"@deno/cache-dir": "jsr:@deno/cache-dir@^0.14.0",
"@deno/graph": "jsr:@deno/graph@^0.82.3",
"@std/assert": "jsr:@std/assert@^0.223.0",
"browserslist": "npm:[email protected]",
"lightningcss": "npm:lightningcss@^1.26.0",
"tailwindcss": "npm:[email protected]"
}
}