Create index.js as entry point for the package

Add main entry point for the package with export options.
This commit is contained in:
Natxo
2026-03-13 15:13:27 +01:00
committed by GitHub
parent a019db48f1
commit 650d6e7e60

8
index.js Normal file
View File

@@ -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');