-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
30 lines (30 loc) · 1.33 KB
/
deno.jsonc
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
{
"nodeModulesDir": "auto",
"tasks": {
"generate": "./src/generate.ts",
"test": "deno test -A",
"bump:cli": "deno run -A jsr:@kellnerd/bump --file packages/cli/deno.jsonc --tag @lift-html/cli@ --commit \"release @lift-html/cli@\"",
"bump:core": "deno run -A jsr:@kellnerd/bump --file packages/core/deno.jsonc --tag @lift-html/core@ --commit \"release @lift-html/core@\"",
"bump:solid": "deno run -A jsr:@kellnerd/bump --file packages/solid/deno.jsonc --tag @lift-html/solid@ --commit \"release @lift-html/solid@\"",
"bump:svelte": "deno run -A jsr:@kellnerd/bump --file packages/svelte/deno.jsonc --tag @lift-html/svelte@ --commit \"release @lift-html/svelte@\"",
"bump:incentive": "deno run -A jsr:@kellnerd/bump --file packages/incentive/deno.jsonc --tag @lift-html/incentive@ --commit \"release @lift-html/incentive@\"",
"lume:start": "cd examples/lume; deno task serve --port=8080",
"demo:start": "cd demo && vinxi dev",
"demo:build": "cd demo && vinxi build",
"demo:preview": "cd demo && vinxi preview"
},
"compilerOptions": {
"lib": ["deno.ns", "esnext", "dom", "dom.iterable"]
},
"workspace": [
"demo",
"packages/solid",
"packages/core",
"packages/svelte",
"packages/tiny",
"packages/incentive",
"packages/cli",
"examples/lume"
],
"exclude": ["**/npm"]
}