Create img directory before copying assets

This commit is contained in:
earthonion
2026-02-05 22:09:29 -05:00
parent fc5e29d351
commit 636d6a5b57
+1 -1
View File
@@ -4,7 +4,7 @@
"type": "module", "type": "module",
"private": true, "private": true,
"scripts": { "scripts": {
"build": "babel --extensions \".ts\" src --out-dir dist && cp -r src/download0/img/text src/download0/img/susec src/download0/img/feil dist/download0/img/", "build": "babel --extensions \".ts\" src --out-dir dist && mkdir -p dist/download0/img && cp -r src/download0/img/text src/download0/img/susec src/download0/img/feil dist/download0/img/",
"lint": "eslint . --ext .ts,.js", "lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix" "lint:fix": "eslint . --ext .ts,.js --fix"
}, },