rsnext/packages
Wyatt Johnson 8405a1a2c3
Misc Typescript updates (#54734)
This bundles a collection of Typescript updates that correct typings
across the servers:

- Manifest typings have been narrowed
- Some methods have been moved to abstract methods on classes
- Added some type guard functions for route matches
- Utilized early returns in logic to reduce nesting
- Added mutability modifiers to some properties to prevent accidental
mutations
- Removed some useless assigns from unused catch error params:

```ts
try {
  await something
} catch (_) {}

// Is the same as

try {
  await something
} catch {}
```

This does not introduce any new functionality, simply some QOL
improvements.
2023-08-30 12:04:02 +02:00
..
create-next-app v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
eslint-config-next v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
eslint-plugin-next v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
font v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
next Misc Typescript updates (#54734) 2023-08-30 12:04:02 +02:00
next-bundle-analyzer v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
next-codemod Remove experimental.newNextLinkBehavior as it's stable (#54720) 2023-08-29 22:49:00 +02:00
next-env v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
next-mdx v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
next-plugin-storybook v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
next-polyfill-module v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
next-polyfill-nomodule v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
next-swc Improve barrel optimizer with loader caching and wilcard exports (#54695) 2023-08-30 02:29:14 +00:00
react-dev-overlay v13.4.20-canary.12 2023-08-29 10:42:17 +00:00
react-refresh-utils Server actions: support relative URLs in redirect() (#54736) 2023-08-29 21:08:56 +00:00
third-parties Updating Third party capital version. (#54418) 2023-08-29 23:13:35 +00:00