From 650d6e7e605ae52145955c94328bd6d236422602 Mon Sep 17 00:00:00 2001 From: Natxo <1172351+natxocc@users.noreply.github.com> Date: Fri, 13 Mar 2026 15:13:27 +0100 Subject: [PATCH] Create index.js as entry point for the package Add main entry point for the package with export options. --- index.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 index.js diff --git a/index.js b/index.js new file mode 100644 index 0000000..4db7e08 --- /dev/null +++ b/index.js @@ -0,0 +1,8 @@ +// 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');