Skip to content
This repository was archived by the owner on May 4, 2026. It is now read-only.
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .jules/bolt.md
Empty file.
11 changes: 7 additions & 4 deletions packages/expo-brownfield/plugin/src/common/filesystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,16 @@ const interpolateVariables = (str: string, variables: Record<string, unknown>):
const maybeReadOverwrittenTemplate = (template: string, platform?: PlatformString): string => {
try {
accessSync(path.join(process.cwd(), '.brownfield-templates'));
// ⚑ Bolt Optimization: Pass 'utf8' encoding directly to avoid unnecessary intermediate buffer allocation
if (existsSync(path.join(process.cwd(), '.brownfield-templates', template))) {
return readFileSync(path.join(process.cwd(), '.brownfield-templates', template)).toString();
return readFileSync(path.join(process.cwd(), '.brownfield-templates', template), 'utf8');
}

if (existsSync(path.join(process.cwd(), '.brownfield-templates', platform ?? '.', template))) {
return readFileSync(
path.join(process.cwd(), '.brownfield-templates', platform ?? '.', template)
).toString();
path.join(process.cwd(), '.brownfield-templates', platform ?? '.', template),
'utf8'
);
}
// eslint-disable-next-line no-empty
} catch {}
Expand All @@ -55,7 +57,8 @@ const readTemplate = (template: string, platform?: PlatformString): string => {
throw new Error(`Template ${template} doesn't exist at ${templatePath}`);
}

return readFileSync(templatePath).toString();
// ⚑ Bolt Optimization: Pass 'utf8' encoding directly to avoid unnecessary intermediate buffer allocation
return readFileSync(templatePath, 'utf8');
};

const createFileFromTemplateInternal = (
Expand Down
3 changes: 2 additions & 1 deletion packages/pod-install/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ async function runAsync(maybeProjectDirectory?: string): Promise<void> {
process.exit(1);
}

const jsonData = JSON.parse(readFileSync(packageJsonPath).toString());
// ⚑ Bolt Optimization: Use 'utf8' encoding directly in readFileSync to avoid unnecessary memory allocation for the intermediate buffer
const jsonData = JSON.parse(readFileSync(packageJsonPath, 'utf8'));
const hasExpoPackage = jsonData.dependencies?.hasOwnProperty('expo');

if (hasExpoPackage) {
Expand Down