Skip to content

Commit 8d3f4c3

Browse files
authored
Merge pull request #115 from shipth-is/95-feat-ignore-previous-build-intermediates-files-which-have-been-placed-into-the-game-dir-and-android-dir
fix: ignore built files and temp files from previous android builds
2 parents 67e1aeb + 2784ea6 commit 8d3f4c3

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/constants/config.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,33 @@ export const DEFAULT_IGNORED_FILES_GLOBS = [
2121
'mono_crash.*.json',
2222
'*.apk',
2323
'*.aab',
24+
// OS cruft
25+
'.DS_Store',
26+
'Thumbs.db',
27+
// IDE project files
28+
'*.iml',
29+
'.idea/',
30+
'.vscode/',
31+
// Gradle + build outputs
32+
'.gradle/',
33+
'**/build/',
34+
// Android local config
35+
'local.properties',
36+
// Signing (keep secrets out of git)
37+
'*.jks',
38+
'*.keystore',
39+
'keystore.properties',
40+
// NDK
41+
'.cxx/',
42+
'.externalNativeBuild/',
43+
// Misc temp
44+
'*.log',
45+
'*.tmp',
46+
'*.temp',
47+
'*.swp',
48+
'*.swo',
49+
'*~',
50+
'.env',
2451
]
2552

2653
const PRIMARY_DOMAIN = 'shipth.is'

0 commit comments

Comments
 (0)