Skip to content

Commit 4f675ff

Browse files
committed
fix: add missing build facade and update gitignore to be more specific
- Change gitignore pattern from 'build/' to '/build/' to only ignore root build artifacts - Add src/utils/build/index.ts focused facade that was accidentally gitignored - This fixes CI build failures where files import from utils/build/index.ts
1 parent 6113c42 commit 4f675ff

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ yarn-error.log*
66

77
# TypeScript build output
88
dist/
9-
build/
9+
/build/
1010
*.tsbuildinfo
1111

1212
# Auto-generated files

src/utils/build/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { executeXcodeBuildCommand } from '../build-utils.ts';

0 commit comments

Comments
 (0)