From 01d5d7939cf722faaca1cbdb13c678c70fa1d4cf Mon Sep 17 00:00:00 2001 From: Yordis Prieto Date: Tue, 4 Jun 2024 17:16:55 -0400 Subject: [PATCH] fix format --- apps/login/package.json | 3 +-- apps/login/turbo.json | 24 ++++++++++++++++++++---- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/apps/login/package.json b/apps/login/package.json index 896c508eb..44fd33885 100644 --- a/apps/login/package.json +++ b/apps/login/package.json @@ -23,8 +23,7 @@ "build": "next build", "prestart": "pnpm build", "start": "next start", - "clean": "pnpm mock:destroy && rm -rf .turbo && rm -rf node_modules && rm -rf .next", - "format": "prettier --write \"**/*.{ts,tsx,md}\"" + "clean": "pnpm mock:destroy && rm -rf .turbo && rm -rf node_modules && rm -rf .next" }, "git": { "pre-commit": "lint-staged" diff --git a/apps/login/turbo.json b/apps/login/turbo.json index a9f0bafab..92110f0fd 100644 --- a/apps/login/turbo.json +++ b/apps/login/turbo.json @@ -6,16 +6,32 @@ "dependsOn": ["^build"] }, "test": { - "dependsOn": ["@zitadel/node#build", "@zitadel/client2#build", "@zitadel/react#build"] + "dependsOn": [ + "@zitadel/node#build", + "@zitadel/client2#build", + "@zitadel/react#build" + ] }, "test:integration": { - "dependsOn": ["@zitadel/node#build", "@zitadel/client2#build", "@zitadel/react#build"] + "dependsOn": [ + "@zitadel/node#build", + "@zitadel/client2#build", + "@zitadel/react#build" + ] }, "test:unit": { - "dependsOn": ["@zitadel/node#build", "@zitadel/client2#build", "@zitadel/react#build"] + "dependsOn": [ + "@zitadel/node#build", + "@zitadel/client2#build", + "@zitadel/react#build" + ] }, "test:watch": { - "dependsOn": ["@zitadel/node#build", "@zitadel/client2#build", "@zitadel/react#build"] + "dependsOn": [ + "@zitadel/node#build", + "@zitadel/client2#build", + "@zitadel/react#build" + ] } } }