-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
23 lines (23 loc) · 987 Bytes
/
Copy pathdeno.json
File metadata and controls
23 lines (23 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"tasks": {
"test": "deno test --allow-read test/",
"build": "deno run -A npm:rescript",
"clean": "deno run -A npm:rescript clean",
"watch": "deno run -A npm:rescript -w",
"build:all": "deno task k9:validate && deno task a2ml:render && deno task build",
"k9:validate": "nickel typecheck config/metadata.k9.ncl && nickel typecheck config/ci.k9.ncl",
"k9:export": "nickel export config/metadata.k9.ncl > metadata.json",
"a2ml:render": "deno run -A --config ../a2ml/prototype/rescript/deno.json ../a2ml/prototype/rescript/src/Cli.bs.js render content/about.a2ml --out public/about.html",
"a2ml:validate": "cd ../a2ml && just cli validate ../axel-protocol/content/*.a2ml",
"serve": "deno run -A jsr:@std/http/file-server ."
},
"imports": {
"rescript": "^12.0.0",
"@rescript/core": "npm:@rescript/core@^1.6.0",
"proven/": "../proven/bindings/rescript/src/"
},
"compilerOptions": {
"allowJs": true,
"checkJs": false
}
}