@sodikinnaa/smart-report-plugin 2.1.1 → 2.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -2,5 +2,4 @@
2
2
  * MCP Activation Hook
3
3
  */
4
4
  export declare function register(api: any): void;
5
- export default register;
6
5
  export declare const activate: typeof register;
package/dist/index.js CHANGED
@@ -197,6 +197,6 @@ export function register(api) {
197
197
  }
198
198
  });
199
199
  }
200
- // Ensure both default and named exports
201
- export default register;
200
+ // We remove default export and stick to NAMED exports only
201
+ // to see if it helps the loader distinguish the module structure.
202
202
  export const activate = register;
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "smart-report-plugin",
3
3
  "name": "Smart Report Integration",
4
- "version": "2.1.1",
4
+ "version": "2.1.2",
5
5
  "description": "Integration plugin for Smart Report and AI Analytics with Daily Dashboard and Dynamic Guides",
6
6
  "main": "dist/index.js",
7
7
  "skills": ["skills/smart-report/SKILL.md"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sodikinnaa/smart-report-plugin",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "OpenClaw plugin for Smart Report system integration with Daily Dashboard",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
package/src/index.ts CHANGED
@@ -209,6 +209,6 @@ export function register(api: any) {
209
209
  });
210
210
  }
211
211
 
212
- // Ensure both default and named exports
213
- export default register;
212
+ // We remove default export and stick to NAMED exports only
213
+ // to see if it helps the loader distinguish the module structure.
214
214
  export const activate = register;