From 2e72286a8954490878766bc10dd179f705f1b60b Mon Sep 17 00:00:00 2001 From: Natxo <1172351+natxocc@users.noreply.github.com> Date: Fri, 13 Mar 2026 15:32:12 +0100 Subject: [PATCH] Refactor exports in index.js for better structure --- index.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/index.js b/index.js index 4db7e08..c9ff94d 100644 --- a/index.js +++ b/index.js @@ -1,8 +1,3 @@ -// This is the main entry point of the package -// Directly exports your plugin from sigpro.js - -// If your sigpro.js already exports the plugin as default, you can do: -export { default } from './sigpro.js'; - -// Or if you prefer CommonJS: -// module.exports = require('./sigpro.js'); +export * from './sigpro.js'; +import * as sigpro from './sigpro.js'; +export default sigpro;