From 6c56dfa8109c2a8b3b2c4bad5eadbefdf72b6c1f Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Fri, 19 Sep 2025 22:23:07 -0500 Subject: [PATCH] ci(lstv2): build stuff to amke sure we keep it clean --- .gitignore | 2 +- .include | 8 +++++++- controller/build_v2app.go | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6e195d1..858b692 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,7 @@ testScripts builds controllerBuilds # ignoring the old app that will be built into this one to make deploying faster and more easy as we do the migration -lstV2 +lstV2/frontend/.tanstack # Logs logs diff --git a/.include b/.include index 3dee8c8..4c32e76 100644 --- a/.include +++ b/.include @@ -8,7 +8,13 @@ README.md CHANGELOG.md package.json package-lock.json -lstV2 +lstV2/dist +lstV2/database +lstV2/frontend/dist +lstV2/drizzle.config.ts +lstV2/package.json +lstV2/package-lock.json +lstV2/README.md lang scripts/services.ps1 drizzle.config.ts diff --git a/controller/build_v2app.go b/controller/build_v2app.go index c5859c0..23b72c1 100644 --- a/controller/build_v2app.go +++ b/controller/build_v2app.go @@ -19,7 +19,7 @@ func runNpmV2Build(server *socketio.Server) error { if err != nil { return err } - dir := filepath.Join(cwd, "..", "..", "lstV2") + dir := filepath.Join(cwd, "..", "lstV2") cmd.Dir = dir }