Skip to content

Commit

Permalink
fix: untrack largeish file (#7005)
Browse files Browse the repository at this point in the history
This shouldn't be tracked in git, as it's meant for each developer machine's to keep state
for incremental compilation speed.

This was also ending up in the published package, where it accounted for ~24% of the
tarball (320 out of 1330 KB).
  • Loading branch information
serhalp authored Jan 21, 2025
1 parent 4631558 commit badfe15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@ site/src/**/*.md
_test_out/**
*.crt
*.key

# Used in local dev by tsc: https://www.typescriptlang.org/tsconfig/#tsBuildInfoFile
tsconfig.tsbuildinfo
1 change: 0 additions & 1 deletion tsconfig.tsbuildinfo

This file was deleted.

2 comments on commit badfe15

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📊 Benchmark results

  • Dependency count: 1,201
  • Package size: 316 MB
  • Number of ts-expect-error directives: 830

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📊 Benchmark results

  • Dependency count: 1,201
  • Package size: 316 MB
  • Number of ts-expect-error directives: 830

Please sign in to comment.