Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Express types files, allow further upgrades (#5352)
Our versions for `@types/express` and `@types/express-serve-static-core` have gotten a bit out of date. They are already upgraded on `release-3.0` but that's not quite `latest` yet. Somehow despite the fact that neither `express` nor `serve-static` have had a new version in two years, the DefinitelyTyped packages for them keep getting backwards-incompatible changes. This is apparently helpful for some users who have upgraded some other packages. Because of how finicky these types are (eg specific `@types/express` versions depends on specific `@types/express-serve-static-core` versions without appropriate version dependencies between them) I do generally think it's best to depend on exact versions here. However I also don't want to have to make any more AS2 releases. So I'm making these into caret dependencies but don't intend to make a similar change on `release-3.0`. Fixes #5350.
- Loading branch information