fix(ci): gitignore was excluding src/frontend/src/data/defaults.ts
CI / Build Native (push) Failing after 3m18s
CI / Build & Push Native Image (push) Has been skipped

The .gitignore had 'data/' which matches any 'data' directory at
any depth. That excluded src/frontend/src/data/ from git, so the
file defaults.ts (with DEFAULT_INSUMOS, DEFAULT_FORMULAS, etc.)
was never committed. CI was failing with TS2307 because the file
was in the local working tree but not in the git checkout.

Tighten the rule to '/data/' so only the root runtime H2 database
folder is ignored, not the source data directory.
This commit is contained in:
2026-08-12 17:57:23 -04:00
parent 355183c03f
commit 7b89066ef3
2 changed files with 91 additions and 1 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ src/frontend/node_modules/
src/frontend/dist/
src/frontend/tsconfig.app.tsbuildinfo
src/frontend/tsconfig.node.tsbuildinfo
data/
/data/
.idea/
.vscode/
*.iml