UNPKG

prosemirror-mentions

Version:

ProseMirror plugin for enabling @mentions & #hashtags

18 lines (16 loc) 303 B
import babel from 'rollup-plugin-babel'; export default { input: './src/index.js', output: [{ format: 'cjs', file: 'dist/index.js', }, { file: 'dist/index.es.js', format: 'es' }], sourcemap: true, plugins: [babel()], external(id) { return !/^[\.\/]/.test(id); }, };