From cf3dd8fd440854e9815f8a2d8d4e93b6a5a0a37f Mon Sep 17 00:00:00 2001 From: developomp Date: Sat, 29 Jul 2023 09:15:31 +0900 Subject: [PATCH] chore: improve clean scripts --- apps/blog/package.json | 2 +- apps/main/package.json | 2 +- apps/portfolio/package.json | 2 +- packages/content/package.json | 2 +- packages/eslint-config/package.json | 2 +- packages/tailwind-config/package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/blog/package.json b/apps/blog/package.json index b45fea3..0815481 100644 --- a/apps/blog/package.json +++ b/apps/blog/package.json @@ -8,7 +8,7 @@ "build": "next build", "lint": "next lint", "test:e2e": "playwright test", - "clean": "rm -rf .next .turbo build node_modules" + "clean": "rm -rf .next .turbo build node_modules test-results" }, "devDependencies": { "@developomp-site/content": "workspace:*", diff --git a/apps/main/package.json b/apps/main/package.json index 63eab7a..2e6c023 100644 --- a/apps/main/package.json +++ b/apps/main/package.json @@ -7,7 +7,7 @@ "cp": "cp ../../packages/content/dist/skills.svg ../../packages/content/dist/resume.pdf static", "dev": "vite dev", "build": "pnpm cp && vite build", - "clean": "rm -rf .svelte-kit .turbo build node_modules vite.config.ts.timestamp-*", + "clean": "rm -rf .turbo .svelte-kit build node_modules vite.config.ts.timestamp-*", "lint": "eslint ." }, "devDependencies": { diff --git a/apps/portfolio/package.json b/apps/portfolio/package.json index 4c6a591..db42ebc 100644 --- a/apps/portfolio/package.json +++ b/apps/portfolio/package.json @@ -8,7 +8,7 @@ "build": "next build", "test:e2e": "playwright test", "lint": "next lint", - "clean": "rm -rf .next .turbo build node_modules" + "clean": "rm -rf .next .turbo dist node_modules test-results" }, "devDependencies": { "@developomp-site/blog": "workspace:*", diff --git a/packages/content/package.json b/packages/content/package.json index 0aeec52..1698470 100644 --- a/packages/content/package.json +++ b/packages/content/package.json @@ -5,7 +5,7 @@ "scripts": { "build": "rm -rf build && tsc && node --es-module-specifier-resolution=node build/index.js", "lint": "eslint .", - "clean": "rm -rf .turbo node_modules dist build" + "clean": "rm -rf .turbo build dist node_modules" }, "dependencies": { "@developomp-site/eslint-config": "workspace:^", diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index dca038c..ac1d0d5 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -5,7 +5,7 @@ "main": ".eslintrc.cjs", "scripts": { "lint": "eslint .eslintrc.cjs", - "clean": "rm -rf node_modules" + "clean": "rm -rf .turbo node_modules" }, "devDependencies": { "@developomp-site/prettier-config": "workspace:*", diff --git a/packages/tailwind-config/package.json b/packages/tailwind-config/package.json index bd6d6ad..31ed3c4 100644 --- a/packages/tailwind-config/package.json +++ b/packages/tailwind-config/package.json @@ -8,7 +8,7 @@ ], "scripts": { "lint": "eslint .", - "clean": "rm -rf node_modules" + "clean": "rm -rf .turbo node_modules" }, "devDependencies": { "@developomp-site/eslint-config": "workspace:*",