-
Notifications
You must be signed in to change notification settings - Fork 803
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): lock file maintenance #4834
chore(deps): lock file maintenance #4834
Conversation
5c8c58c
to
89eff8a
Compare
The tsc build is failing with errors like these:
This is due to the
Here is the problematic "node_modules/@types/lodash/common/object.d.ts" file: https://gist.github.com/trentm/8cab9003b2d2b1641ddc37192c071d0f#file-object-d-ts-L1026 For example it is failing on: type GetFieldTypeOfArrayLikeByKey<T extends unknown[], K> =
K extends number ? T[K]
: K extends `${infer N extends number}` ? T[N]
// ^--- failing here
: K extends keyof T ? T[K] : undefined; Ugh. Does this mean that our being limited to TypeScript 4.4.4 means that we'll start being unable to take some dependencies with too-new .d.ts syntax? I'm guessing the issue is the |
Yes - as discussed offline while talking about SDK 2.0 it's going to be a real problem moving forward. Fortunately here we can remove this dependency as it was actually unused, see #4905 |
I tried to initiate a rebase/retry of this PR now that #4905 is merged. |
Hmm, yes it does not seem to update for some reason. I'll try to close this and have it re-open a new one. |
This PR contains the following updates:
🔧 This Pull Request updates lock files to use the latest dependency versions.
Configuration
📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.