Commit f6db596
authored
fix: don't resolve
* fix: don't resolve `filter`ed files
- if they're `exclude`d / not `include`d, then we shouldn't be processing them
- we're already not transforming them, so this just applies the same exclusion to resolving
- this is _partly_ a regression from b0e3922, as that removed the `allImportedFiles` Set that previously filtered out files not in the `tsconfig` `include`
- but that _itself_ was a regression that was removed -- files that didn't pass `filter` should have _never_ been resolved
- basically, the `allImportedFiles` regression was covering up this long-standing bug
- also move `.d.ts` check to above the `filter` check
- we shouldn't be adding declarations to the `cache`, in particular as we don't process declarations, so they'll never be marked as dirty
- having this check above the `filter` should be slighltly more efficient as well (as would not having these files in the cache graph)
types: be more specific with `filter`'s type
- no need for this to be `any`
* build
- patch release has been waiting for a few weeks
* pub: release v0.34.1
- patch bump with the past few fixes
- bump internal rpt2 version to 0.34.0filtered files (#428)1 parent 3ef3289 commit f6db596
File tree
8 files changed
+30
-26
lines changed- dist
- src
8 files changed
+30
-26
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27932 | 27932 | | |
27933 | 27933 | | |
27934 | 27934 | | |
27935 | | - | |
| 27935 | + | |
27936 | 27936 | | |
27937 | 27937 | | |
27938 | 27938 | | |
| |||
27978 | 27978 | | |
27979 | 27979 | | |
27980 | 27980 | | |
27981 | | - | |
| 27981 | + | |
27982 | 27982 | | |
27983 | 27983 | | |
27984 | 27984 | | |
| |||
28065 | 28065 | | |
28066 | 28066 | | |
28067 | 28067 | | |
28068 | | - | |
28069 | | - | |
28070 | 28068 | | |
28071 | 28069 | | |
| 28070 | + | |
| 28071 | + | |
| 28072 | + | |
28072 | 28073 | | |
28073 | 28074 | | |
28074 | 28075 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
27903 | 27903 | | |
27904 | 27904 | | |
27905 | 27905 | | |
27906 | | - | |
| 27906 | + | |
27907 | 27907 | | |
27908 | 27908 | | |
27909 | 27909 | | |
| |||
27949 | 27949 | | |
27950 | 27950 | | |
27951 | 27951 | | |
27952 | | - | |
| 27952 | + | |
27953 | 27953 | | |
27954 | 27954 | | |
27955 | 27955 | | |
| |||
28036 | 28036 | | |
28037 | 28037 | | |
28038 | 28038 | | |
28039 | | - | |
28040 | | - | |
28041 | 28039 | | |
28042 | 28040 | | |
| 28041 | + | |
| 28042 | + | |
| 28043 | + | |
28043 | 28044 | | |
28044 | 28045 | | |
28045 | 28046 | | |
| |||
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | | - | |
| 65 | + | |
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
35 | | - | |
| 35 | + | |
36 | 36 | | |
37 | 37 | | |
38 | 38 | | |
| |||
204 | 204 | | |
205 | 205 | | |
206 | 206 | | |
207 | | - | |
208 | | - | |
209 | | - | |
210 | 207 | | |
211 | 208 | | |
212 | 209 | | |
| 210 | + | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
213 | 215 | | |
214 | 216 | | |
215 | 217 | | |
| |||
0 commit comments