aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/build-windows.ps1
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build-windows.ps1')
-rw-r--r--scripts/build-windows.ps110
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/build-windows.ps1 b/scripts/build-windows.ps1
index 5af7392..7a5004e 100644
--- a/scripts/build-windows.ps1
+++ b/scripts/build-windows.ps1
@@ -154,16 +154,20 @@ if (-not (Test-Path -Path "data")) {
154# ----------------------------------------------------------------------------- 154# -----------------------------------------------------------------------------
155Write-Host "*************** Building recipes ***************" 155Write-Host "*************** Building recipes ***************"
156Push-Location recipes 156Push-Location recipes
157pnpm i 157pnpm i && pnpm lint && pnpm reformat-files && pnpm package
158pnpm package
159Pop-Location 158Pop-Location
160 159
160# -----------------------------------------------------------------------------
161# Now the meat..... 161# Now the meat.....
162& pnpm i 162& pnpm i
163& node ace migration:refresh 163& pnpm prepare-code
164& pnpm lint
165# TODO: Uncomment after fixing tests
166# & pnpm test
164 167
165# ----------------------------------------------------------------------------- 168# -----------------------------------------------------------------------------
166Write-Host "*************** Starting app ***************" 169Write-Host "*************** Starting app ***************"
170& node ace migration:refresh
167& pnpm start --dev 171& pnpm start --dev
168 172
169Write-Host "*************** App successfully stopped! ***************" 173Write-Host "*************** App successfully stopped! ***************"