UNPKG

vuex-alt

Version:

An alternative approach to Vuex helpers for accessing state, getters and actions that doesn't rely on string constants.

15 lines (14 loc) 286 B
// rollup.config.js import resolve from 'rollup-plugin-node-resolve'; import commonjs from 'rollup-plugin-commonjs'; export default { input: 'src/index.js', output: { file: 'dist/index-not-transpiled.js', format: 'cjs' }, plugins: [ resolve(), commonjs() ] };