From e1f7e44e4d0ae455eb744e2521bd1c3015bdd968 Mon Sep 17 00:00:00 2001 From: "Ava Gaiety W." Date: Sat, 30 Mar 2024 03:15:15 +0000 Subject: [PATCH] Fix docker removing directory for jampack --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0c38f2a..d08d263 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "postbuild": "npm run postbuild:styles && npm run postbuild:highlighttheme", "postbuild:highlighttheme": "cp ./node_modules/@catppuccin/highlightjs/css/catppuccin.variables.css ./_site", "postbuild:styles": "npx tailwindcss -i styles.css -o _site/styles.css --env production", - "optimize": "rm -r _site/_jampack && jampack _site", + "optimize": "rm -rf _site/_jampack && jampack _site", "test": "echo \"Error: no test specified\" && exit 1", "deploy": "docker compose up --build -d" },