Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gigincg committed Oct 11, 2024
1 parent 006b2a8 commit 7de8701
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/setup-care-apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ if (!fs.existsSync(appsDir)) {
fs.mkdirSync(appsDir);
}

// Clone or pull care apps
appsConfig.forEach((app) => {
const appDir = path.join(appsDir, app.name);
if (!fs.existsSync(appDir)) {
Expand All @@ -49,9 +50,9 @@ const importApps = appsConfig.map((app) => ({
),
}));

// Add the following code to generate pluginMap.ts
// Generate pluginMap.ts
const pluginMapPath = path.join(__dirname, "..", "src", "pluginMap.ts");
const pluginMapContent = `import { PluginManifest } from './pluginTypes';
const pluginMapContent = `import { PluginManifest } from "./pluginTypes";
${importApps
.map(
Expand Down

0 comments on commit 7de8701

Please sign in to comment.