From 55b7697316fd70bb3b741b6f33157dbf70e1b0fa Mon Sep 17 00:00:00 2001 From: Catalin Pit Date: Fri, 14 Mar 2025 07:15:57 +0200 Subject: [PATCH] chore: update `d` script in package.json (#1703) Add the `translate:compile` command to the `d` script. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 6684d0992..20b1ddb40 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "prepare": "husky && husky install || true", "commitlint": "commitlint --edit", "clean": "turbo run clean && rimraf node_modules", - "d": "npm run dx && npm run dev", + "d": "npm run dx && npm run translate:compile && npm run dev", "dx": "npm i && npm run dx:up && npm run prisma:migrate-dev && npm run prisma:seed", "dx:up": "docker compose -f docker/development/compose.yml up -d", "dx:down": "docker compose -f docker/development/compose.yml down", @@ -80,4 +80,4 @@ "trigger.dev": { "endpointId": "documenso-app" } -} \ No newline at end of file +}