Skip to content

Commit

Permalink
fix setup care apps script
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Dec 31, 2024
1 parent 12ba6e3 commit 4ebd7ea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/setup-care-apps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ const pluginMapContent = `// Use type assertion for the static import${plugins
(plugin) =>
`// @ts-expect-error Remote module will be available at runtime\nimport ${plugin.camelCaseName}Manifest from "${plugin.repo}/manifest";`,
)
.join("\n")}import type { PluginManifest } from "./pluginTypes";
.join("\n")}
import type { PluginManifest } from "./pluginTypes";
const pluginMap: PluginManifest[] = [${plugins.map((plugin) => `${plugin.camelCaseName}Manifest as PluginManifest`).join(",\n ")}];
Expand Down

0 comments on commit 4ebd7ea

Please sign in to comment.