Template for js plugin project.
npm i
Build js bundle from src/index.js
to dist/index.js
.
npm run build
import plugin from 'js-plugin-template' // js-plugin-template is path to plugin directory
plugin.logText('text') // print 'text' in console
import { logText } from 'js-plugin-template' // js-plugin-template is path to plugin directory
logText('text') // print 'text' in console