1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-10 17:53:36 +02:00

Apparently when postinstall prepare is not run

This commit is contained in:
Gastón Fournier 2023-05-13 18:18:16 +02:00
parent e089c6820d
commit 0ca462af54
No known key found for this signature in database
GPG Key ID: AF45428626E17A8E

View File

@ -34,7 +34,7 @@
"build:backend": "copyfiles -u 1 src/mailtemplates/**/*.mustache dist/ && tsc --pretty --strictNullChecks false",
"build:frontend": "yarn --cwd ./frontend run build",
"build": "yarn run build:frontend && yarn run build:backend",
"postinstall": "if [ ! -d \"./dist\" ]; then yarn build; fi",
"postinstall": "if [ ! -d \"./dist\" ]; then yarn --cwd ./frontend install && yarn build; fi",
"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\"",