From 15feb8dd6d37f00c5518d122be56a0871a7b0ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gast=C3=B3n=20Fournier?= Date: Fri, 12 May 2023 17:49:28 +0200 Subject: [PATCH] Add build as part of prepare --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2a987843d4..852ab6f21a 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "dev:backend": "TZ=UTC NODE_ENV=development tsc-watch --strictNullChecks false --onSuccess \"node dist/server-dev.js\"", "dev:frontend": "wait-on tcp:4242 && yarn --cwd ./frontend run dev", "dev": "concurrently \"yarn:dev:backend\" \"yarn:dev:frontend\"", - "prepare": "node scripts/husky-install && yarn --cwd ./frontend install", + "prepare": "node scripts/husky-install && yarn --cwd ./frontend install && yarn build && echo HELLO", "prestart:dev": "yarn run clean", "start:dev": "TZ=UTC NODE_ENV=development tsc-watch --strictNullChecks false --onSuccess \"node dist/server-dev.js\"", "copy-templates": "copyfiles -u 1 src/mailtemplates/**/*.mustache dist/",