mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 22:34:01 -05:00
Generalized /build folder exclusion in .gitignore
no issue - The "build" folder and "tsconfig.tsbuildinfo" are commonly ignored from source control across packages. - It makes sense to make one default rule for them all instead of adding a new rule whenever new package is created.
This commit is contained in:
parent
4e2a00b6e6
commit
69ce97268e
1 changed files with 4 additions and 7 deletions
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -125,19 +125,16 @@ Caddyfile
|
|||
# Portal
|
||||
!/ghost/portal/.env
|
||||
/ghost/portal/umd
|
||||
/ghost/portal/build
|
||||
|
||||
# Sodo-Search
|
||||
/ghost/sodo-search/public/main.css
|
||||
/ghost/sodo-search/umd
|
||||
/ghost/sodo-search/build
|
||||
|
||||
# Announcement-Bar
|
||||
/ghost/announcement-bar/umd
|
||||
/ghost/announcement-bar/build
|
||||
|
||||
/ghost/post-revisions/build
|
||||
/ghost/post-revisions/tsconfig.tsbuildinfo
|
||||
# Build files
|
||||
/ghost/*/build
|
||||
|
||||
/ghost/in-memory-repository/build
|
||||
/ghost/in-memory-repository/tsconfig.tsbuildinfo
|
||||
# Typescript build artifacts
|
||||
/ghost/*/tsconfig.tsbuildinfo
|
||||
|
|
Loading…
Reference in a new issue