diff --git a/package.json b/package.json index 010c582f..5352394a 100644 --- a/package.json +++ b/package.json @@ -2,22 +2,23 @@ "name": "facilmap-root", "private": true, "workspaces": [ + "types", "client", - "frontend", + "utils", "leaflet", - "server", - "types", - "utils" + "frontend", + "server" ], "scripts": { "lint": "eslint **/*.ts", - "clean": "cd client && yarn run clean && cd ../leaflet && yarn run clean && cd ../frontend && yarn run clean", - "build": "cd client && yarn run build && cd ../leaflet && yarn run build && cd ../frontend && yarn run build" + "clean": "yarn workspaces run clean", + "build": "yarn workspaces run build" }, "devDependencies": { "@typescript-eslint/eslint-plugin": "^4.15.2", "@typescript-eslint/parser": "^4.15.2", "eslint": "^7.21.0", "eslint-plugin-import": "^2.22.1" - } + }, + "version": "0.0.0" }