https://domlink.deployments.hotsocket.fyi/

yknow i kinda just assumed the out dir was there. sorry ming.

+2 -2
+2 -2
package.json
··· 16 16 "scripts": { 17 17 "serve": "http-server ./out -C", 18 18 "script_index": "deno run --allow-read --allow-write scripts/index.ts", 19 - "build": "deno task script_index && deno bundle --platform=browser src/*.ts --outdir=out --sourcemap=inline && rsync -av static/ out/", 20 - "build-prod": "deno task script_index && deno bundle --platform=browser src/*.ts --outdir=out --minify && rsync -av static/ out/", 19 + "build": "mkdir -p out && deno task script_index && deno bundle --platform=browser src/*.ts --outdir=out --sourcemap=inline && rsync -av static/ out/", 20 + "build-prod": "mkdir -p out && deno task script_index && deno bundle --platform=browser src/*.ts --outdir=out --minify && rsync -av static/ out/", 21 21 "test": "deno test test/**/*.ts" 22 22 } 23 23 }