Skip to content

Commit 150b6b5

Browse files
authored
chore(release): 1.4.10
* fix(templates): resolve 4 template bugs found by react-vite smoke tests - uploadthing: downgrade ^7.8.0 to ^7.7.0 (7.8.0 does not exist on npm) - biome: change indentStyle from tab to space to match scaffolded code - email: remove unused Link import from welcome.tsx templates - email: add react and @types/react deps for server-side react-email JSX - sentry: fix withSpan context type to use Parameters<typeof Sentry.startSpan>[0] * fix(templates): resolve type errors in typesense, meilisearch, postmark, and inngest templates - Typesense: fix imports (CollectionCreateSchema from Collections, SearchParams from Types), add generic to SearchParams<T, string>, cast delete() result, use CollectionUpdateSchema - Meilisearch: fix deleteDocuments param type, getDocument return cast, getDocuments offset nullability - Postmark: fix ContentID type mismatch (undefined vs null) - Inngest: remove unused destructured variables that trigger noUnusedLocals
1 parent 2547335 commit 150b6b5

11 files changed

Lines changed: 39298 additions & 39291 deletions

File tree

packages/template-generator/src/processors/email-deps.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ export function processEmailDeps(vfs: VirtualFileSystem, config: ProjectConfig):
103103
addPackageDependency({
104104
vfs,
105105
packagePath: targetPath,
106-
dependencies: ["@react-email/components", "react-email"],
106+
dependencies: ["@react-email/components", "react-email", "react"],
107+
devDependencies: ["@types/react"],
107108
});
108109
}
109110
}

0 commit comments

Comments
 (0)