Skip to content

Commit

Permalink
fix: re-export V2_HtmlMetaDescriptor and V2_MetaFunction from run…
Browse files Browse the repository at this point in the history
…time packages (#4943)

* fix: re-export `V2_HtmlMetaDescriptor` and `V2_MetaFunction` from runtime packages

Signed-off-by: Logan McAnsh <logan@mcan.sh>

* Create lucky-chairs-remember.md

Signed-off-by: Logan McAnsh <logan@mcan.sh>
  • Loading branch information
mcansh committed Dec 22, 2022
1 parent f12bc09 commit 6371018
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .changeset/lucky-chairs-remember.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
"remix": patch
"@remix-run/cloudflare": patch
"@remix-run/deno": patch
"@remix-run/node": patch
"@remix-run/serve": patch
"@remix-run/server-runtime": patch
---

re-export `V2_HtmlMetaDescriptor` and `V2_MetaFunction` from runtime packages
4 changes: 3 additions & 1 deletion packages/remix-cloudflare/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export type {
HeadersFunction,
HtmlLinkDescriptor,
HtmlMetaDescriptor,
V2_HtmlMetaDescriptor,
LinkDescriptor,
LinksFunction,
LoaderArgs,
Expand All @@ -48,6 +49,7 @@ export type {
MemoryUploadHandlerOptions,
MetaDescriptor,
MetaFunction,
V2_MetaFunction,
PageLinkDescriptor,
RequestHandler,
RouteComponent,
Expand All @@ -62,6 +64,6 @@ export type {
SignFunction,
TypedResponse,
UnsignFunction,
UploadHandlerPart,
UploadHandler,
UploadHandlerPart,
} from "@remix-run/server-runtime";
2 changes: 2 additions & 0 deletions packages/remix-deno/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export type {
HeadersFunction,
HtmlLinkDescriptor,
HtmlMetaDescriptor,
V2_HtmlMetaDescriptor,
LinkDescriptor,
LinksFunction,
LoaderArgs,
Expand All @@ -51,6 +52,7 @@ export type {
MemoryUploadHandlerOptions,
MetaDescriptor,
MetaFunction,
V2_MetaFunction,
PageLinkDescriptor,
RequestHandler,
RouteComponent,
Expand Down
4 changes: 3 additions & 1 deletion packages/remix-node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ export type {
HeadersFunction,
HtmlLinkDescriptor,
HtmlMetaDescriptor,
V2_HtmlMetaDescriptor,
LinkDescriptor,
LinksFunction,
LoaderArgs,
Expand All @@ -75,6 +76,7 @@ export type {
MemoryUploadHandlerOptions,
MetaDescriptor,
MetaFunction,
V2_MetaFunction,
PageLinkDescriptor,
RequestHandler,
RouteComponent,
Expand All @@ -89,6 +91,6 @@ export type {
SignFunction,
TypedResponse,
UnsignFunction,
UploadHandlerPart,
UploadHandler,
UploadHandlerPart,
} from "@remix-run/server-runtime";
2 changes: 2 additions & 0 deletions packages/remix-server-runtime/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export type {
HeadersFunction,
HtmlLinkDescriptor,
HtmlMetaDescriptor,
V2_HtmlMetaDescriptor,
LinkDescriptor,
LinksFunction,
LoaderArgs,
Expand All @@ -57,6 +58,7 @@ export type {
MemoryUploadHandlerOptions,
MetaDescriptor,
MetaFunction,
V2_MetaFunction,
PageLinkDescriptor,
RequestHandler,
RouteComponent,
Expand Down
2 changes: 2 additions & 0 deletions packages/remix-server-runtime/reexport.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,13 @@ export type {
ErrorBoundaryComponent,
HeadersFunction,
HtmlMetaDescriptor,
V2_HtmlMetaDescriptor,
LinksFunction,
LoaderArgs,
LoaderFunction,
MetaDescriptor,
MetaFunction,
V2_MetaFunction,
RouteComponent,
RouteHandle,
} from "./routeModules";
Expand Down

0 comments on commit 6371018

Please sign in to comment.