Refactor exports in index.js for better structure

This commit is contained in:
Natxo
2026-03-13 15:32:12 +01:00
committed by GitHub
parent 650d6e7e60
commit 2e72286a89

View File

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