Files
sigpro/index.js
Natxo 650d6e7e60 Create index.js as entry point for the package
Add main entry point for the package with export options.
2026-03-13 15:13:27 +01:00

9 lines
281 B
JavaScript

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