Skip to content

Commit d6d2519

Browse files
authored
chore: update bootstrap plugin export
Relates to: Plugin export collisions in character files Risks Low - This is a minor bug fix that ensures proper module exports Background What does this PR do? Ensures the bootstrap plugin has a proper default export at the bottom to avoid collisions when used in the actions module in character files. This maintains consistency with other plugins in the codebase that follow the same pattern (like the EVM plugin). What kind of change is this? Bug fixes (non-breaking change which fixes an issue) Documentation changes needed? My changes do not require a change to the project documentation. Testing Where should a reviewer start? Check packages/plugin-bootstrap/src/index.ts to verify the proper export structure Verify that the plugin can be properly imported in character files without collisions Detailed testing steps Load a character file that uses the bootstrap plugin Verify that no export collisions occur when the plugin is loaded Verify that all plugin actions are properly accessible Deploy Notes No special deploy steps required. This is a straightforward bug fix that maintains backward compatibility. Discord: affaanmustafa
1 parent cb5de7a commit d6d2519

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/plugin-bootstrap/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ export const bootstrapPlugin: Plugin = {
3131
evaluators: [factEvaluator, goalEvaluator],
3232
providers: [boredomProvider, timeProvider, factsProvider],
3333
};
34+
export default bootstrapPlugin;

0 commit comments

Comments
 (0)