Fix rimraf order

This commit is contained in:
Stan Wohlwend 2024-06-02 18:37:09 +02:00
parent 2534b4e43a
commit f1906bc2b2

View File

@ -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",