ci(lstv2): build stuff to amke sure we keep it clean

This commit is contained in:
2025-09-19 22:23:07 -05:00
parent 1db91c5359
commit 6c56dfa810
3 changed files with 9 additions and 3 deletions

2
.gitignore vendored
View File

@@ -11,7 +11,7 @@ testScripts
builds builds
controllerBuilds controllerBuilds
# ignoring the old app that will be built into this one to make deploying faster and more easy as we do the migration # 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
logs logs

View File

@@ -8,7 +8,13 @@ README.md
CHANGELOG.md CHANGELOG.md
package.json package.json
package-lock.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 lang
scripts/services.ps1 scripts/services.ps1
drizzle.config.ts drizzle.config.ts

View File

@@ -19,7 +19,7 @@ func runNpmV2Build(server *socketio.Server) error {
if err != nil { if err != nil {
return err return err
} }
dir := filepath.Join(cwd, "..", "..", "lstV2") dir := filepath.Join(cwd, "..", "lstV2")
cmd.Dir = dir cmd.Dir = dir
} }