-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
15 lines (15 loc) · 650 Bytes
/
Copy pathdeno.json
File metadata and controls
15 lines (15 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"nodeModulesDir": "auto",
"tasks": {
"setup": "deno install",
"build:res": "deno run -A npm:rescript build",
"watch:res": "deno run -A npm:rescript build -w",
"build:wasm": "./scripts/build-wasm.sh",
"build:js": "deno run -A npm:webpack --mode=production",
"build:js:dev": "deno run -A npm:webpack --mode=development",
"build": "deno task build:res && deno task build:js",
"dev": "deno task build:res && deno task build:js:dev && deno run -A npm:web-ext run --source-dir dist",
"lint": "deno task build:res",
"test:core-fill": "cargo test --manifest-path rust/pdftool_core/Cargo.toml fill_blocks_"
}
}