renamed build:dev to docs:serve and add separate docs (just building no serving)

This commit is contained in:
ralf 2023-11-16 14:56:21 +02:00
parent 1022309b8e
commit 5eaf6a275f
1 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,8 @@
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -cw",
"build:dev": "node doc/scripts/build.mjs --dev --serve",
"docs": "node doc/scripts/build.mjs --dev",
"docs:serve": "node doc/scripts/build.mjs --dev --serve",
"jstest": "tsc &> /dev/null; web-test-runner",
"jstest:watch": "web-test-runner --watch"
},
@ -97,4 +98,4 @@
"engines": {
"node": ">=14.0.0"
}
}
}