🐛 Fix zip handling on exporter

This commit is contained in:
Andrey Antukh
2025-10-01 11:56:57 +02:00
parent a25ba6b482
commit 000fa51c73
2 changed files with 4 additions and 4 deletions

View File

@@ -28,7 +28,7 @@
"ws": "^8.18.3"
},
"scripts": {
"clear:shadow-cache": "rm -rf .shadow-cljs",
"clear:shadow-cache": "rm -rf .shadow-cljs && rm -rf target",
"watch:app": "clojure -M:dev:shadow-cljs watch main",
"watch": "yarn run clear:shadow-cache && yarn run watch:app",
"build:app": "clojure -M:dev:shadow-cljs release main",

View File

@@ -7,9 +7,9 @@
(ns app.handlers.resources
"Temporal resources management."
(:require
["archiver" :as arc]
["fs" :as fs]
["path" :as path]
["archiver$default" :as arc]
["node:fs" :as fs]
["node:path" :as path]
[app.common.exceptions :as ex]
[app.common.uuid :as uuid]
[app.util.mime :as mime]