From 5d952d3474ee522f2bec4f638dd8b0afb7c2bf09 Mon Sep 17 00:00:00 2001 From: Candid Dauth Date: Wed, 10 Apr 2024 00:00:30 +0200 Subject: [PATCH] Also clean out directories with yarn clean --- client/package.json | 2 +- frontend/package.json | 2 +- leaflet/package.json | 2 +- server/package.json | 2 +- types/package.json | 2 +- utils/package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/client/package.json b/client/package.json index 379d01ed..21e75842 100644 --- a/client/package.json +++ b/client/package.json @@ -27,7 +27,7 @@ ], "scripts": { "build": "vite build", - "clean": "rimraf dist", + "clean": "rimraf dist out out.node", "dev-server": "vite", "check-types": "tsc -b --emitDeclarationOnly" }, diff --git a/frontend/package.json b/frontend/package.json index 1d7a5b70..c8cb6ae5 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -32,7 +32,7 @@ "build": "yarn build:lib && yarn build:app", "build:lib": "vite --config vite-lib.config.ts build", "build:app": "NODE_OPTIONS='--import tsx' vite build", - "clean": "rimraf dist", + "clean": "rimraf dist out out.node", "dev-server": "NODE_OPTIONS='--import tsx' vite", "test": "NODE_OPTIONS='--import tsx' vitest run", "test-watch": "NODE_OPTIONS='--import tsx' vitest", diff --git a/leaflet/package.json b/leaflet/package.json index 706d9c9c..4c256d2f 100644 --- a/leaflet/package.json +++ b/leaflet/package.json @@ -31,7 +31,7 @@ ], "scripts": { "build": "vite build", - "clean": "rimraf dist", + "clean": "rimraf dist out out.node", "dev-server": "vite", "download-icons": "tsx ./download-icons.ts", "check-types": "tsc -b --emitDeclarationOnly", diff --git a/server/package.json b/server/package.json index c163a05b..ae72ea7e 100644 --- a/server/package.json +++ b/server/package.json @@ -25,7 +25,7 @@ ], "scripts": { "build": "vite build", - "clean": "rimraf dist", + "clean": "rimraf dist out", "prod-server": "DOTENV_CONFIG_PATH=../config.env node ./bin/facilmap-server.js", "server": "DOTENV_CONFIG_PATH=../config.env NODE_OPTIONS='--import tsx' vite-node ./server.ts", "dev-server": "FM_DEV=true DOTENV_CONFIG_PATH=../config.env NODE_OPTIONS='--import tsx' vite-node ./server.ts", diff --git a/types/package.json b/types/package.json index 92898b52..c7bb1ae1 100644 --- a/types/package.json +++ b/types/package.json @@ -18,7 +18,7 @@ "scripts": { "build": "vite build", "watch": "vite build --watch", - "clean": "rimraf dist", + "clean": "rimraf dist out out.node", "check-types": "tsc -b --emitDeclarationOnly" }, "files": [ diff --git a/utils/package.json b/utils/package.json index b4efec64..9ac4eaa8 100644 --- a/utils/package.json +++ b/utils/package.json @@ -21,7 +21,7 @@ "scripts": { "build": "vite build", "watch": "vite build --watch", - "clean": "rimraf dist", + "clean": "rimraf dist out out.node", "check-types": "tsc -b --emitDeclarationOnly", "test": "vitest run", "test-watch": "vitest"