From f1906bc2b2f572f24b1a57ee33ac8bc36bbb9568 Mon Sep 17 00:00:00 2001 From: Stan Wohlwend Date: Sun, 2 Jun 2024 18:37:09 +0200 Subject: [PATCH] Fix rimraf order --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ab5c37b88..10a82b15b 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "build:docs": "turbo run build --no-cache --filter=stack-docs...", "build:server": "turbo run build --no-cache --filter=@stackframe/stack-server...", "build:demo": "turbo run build --no-cache --filter=demo-app...", - "clean": "turbo run clean --no-cache && rimraf --glob **/.turbo && rimraf --glob **/node_modules && rimraf --glob **/.next", + "clean": "turbo run clean --no-cache && rimraf --glob **/.next && rimraf --glob **/.turbo && rimraf --glob **/node_modules", "codegen": "turbo run codegen --no-cache", "psql:server": "pnpm run --filter=@stackframe/stack-server psql", "prisma:server": "pnpm run --filter=@stackframe/stack-server prisma",