Skip to content

Commit 90acb21

Browse files
authored
fix(general): .earthlyignore to avoid copying irrelevant files into earthly context (#1173)
* fix: ad .earthlyignore next to relevant earthly target * chore: prevent local files from being copied into earthly * chore: unignore Earthfile from build context * chore: resign from .earthlyignore in catalyst-gateway
1 parent ac0ae5b commit 90acb21

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

.config/dictionaries/project.dic

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ drep
8080
dreps
8181
dtscalac
8282
earthfile
83+
earthlyignore
8384
Easterling
8485
eddsa
8586
Edgedriver

.earthlyignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
**/.flutter-plugins-dependencies
1010
**/.idea/
1111
**/*.iml
12-
**/Earthfile
12+
**/coverage/
13+
**/test_reports/
1314

1415
# node related
1516

catalyst_voices/.earthlyignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Files and directories created by pub
2+
3+
**/.dart_tool/
4+
**/.packages
5+
**/build/
6+
**/pubspec.lock
7+
**/pubspec_overrides.yaml
8+
**/.flutter-plugins
9+
**/.flutter-plugins-dependencies
10+
**/.idea/
11+
**/*.iml
12+
**/coverage/
13+
**/test_reports/
14+
15+
# node related
16+
17+
**/node_modules/
18+
19+
# Rust related
20+
21+
**/target

0 commit comments

Comments
 (0)