Skip to content

Commit

Permalink
fix: copying of detected images for prod build
Browse files Browse the repository at this point in the history
  • Loading branch information
Garee committed Oct 20, 2023
1 parent a2e48c9 commit 2a1d9e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"build": "node app/build.js",
"build:prod": "cross-env NODE_ENV=production npm run build && npm run copy:data-detected",
"clean": "rm -rf build",
"copy:data-detected": "mkdir -p ./build/data/detected && cp -r ./data/detected ./build/data/detected",
"copy:data-detected": "mkdir -p ./build/data/detected && cp ./data/detected/*.jpg ./build/data/detected",
"dev": "concurrently --kill-others \"npm run build\" \"npm run tsc:watch\" \"npm run sync\"",
"format": "prettier --write app/*.js app/src/*.{tsx,html} && black .",
"lint": "npm run lint:py && npm run lint:app",
Expand Down

0 comments on commit 2a1d9e1

Please sign in to comment.