aboutsummaryrefslogtreecommitdiff
path: root/174bg/handbook/package.json
diff options
context:
space:
mode:
authorAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-30 03:14:00 +0100
committerAlex Pooley (@zuedev) <zuedev@gmail.com>2026-05-30 03:14:00 +0100
commitc1c8e8f33d277699fedf565e5a0efe1386470cf4 (patch)
treeca9d8a76630a203ab3ae76f1b8ffb5f142735a97 /174bg/handbook/package.json
parente6d6499cbb88f7d615ec619fa81a1672bb375d03 (diff)
downloadunnamed-group-c1c8e8f33d277699fedf565e5a0efe1386470cf4.tar
unnamed-group-c1c8e8f33d277699fedf565e5a0efe1386470cf4.tar.gz
unnamed-group-c1c8e8f33d277699fedf565e5a0efe1386470cf4.tar.bz2
unnamed-group-c1c8e8f33d277699fedf565e5a0efe1386470cf4.tar.xz
unnamed-group-c1c8e8f33d277699fedf565e5a0efe1386470cf4.zip
move wikilinks to new file
Diffstat (limited to '174bg/handbook/package.json')
-rw-r--r--174bg/handbook/package.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/174bg/handbook/package.json b/174bg/handbook/package.json
index 94ec8ca..b885c05 100644
--- a/174bg/handbook/package.json
+++ b/174bg/handbook/package.json
@@ -11,12 +11,12 @@
},
"scripts": {
"build-css": "npx @tailwindcss/cli -i ./source/index.css -o ./public/index.css",
- "copy-html": "npx copyfiles -u 1 ./source/index.html ./public",
- "build": "npx npm-run-all build-css copy-html",
+ "copy-files": "npx copyfiles -u 1 \"source/**/*.{html,js}\" public",
+ "build": "npx npm-run-all build-css copy-files",
"watch-css": "npx @tailwindcss/cli -i ./source/index.css -o ./public/index.css --watch",
- "watch-html": "npx chokidar \"source/**/*.html\" -c \"npm run copy-html\" --initial",
+ "watch-files": "npx chokidar \"source/**/*.{html,js}\" -c \"npm run copy-files\" --initial",
"serve": "npx live-server public",
- "dev": "npx npm-run-all --parallel watch-css watch-html serve",
+ "dev": "npx npm-run-all --parallel watch-css watch-files serve",
"deploy": "npx wrangler deploy --minify",
"build+deploy": "npx npm-run-all build deploy"
}