-
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) · 838 Bytes
/
deno.json
File metadata and controls
15 lines (15 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"tasks": {
"start": "eleventy --serve --watch",
"start:fast": "eleventy --serve --watch --incremental",
"start:nekoweb": "HOST_TYPE=nekoweb eleventy --serve",
"start:all": "BUILD_TYPE=production HOST_TYPE=all eleventy --serve",
"html-minify": "html-minifier-terser --config-file=.html-minifier.json --input-dir=_site --output-dir=_site --file-ext=html",
"build": "eleventy",
"build:prod": "BUILD_TYPE=production eleventy && deno task html-minify",
"build:neo": "HOST_TYPE=neocities BUILD_TYPE=production eleventy && deno task html-minify",
"build:neko": "HOST_TYPE=nekoweb BUILD_TYPE=production eleventy && deno task html-minify",
"debug": "DEBUG=Eleventy* eleventy --serve --watch"
},
"allowScripts": ["npm:sharp@0.33.5", "npm:sharp@0.34.5"]
}