UNPKG

pantry-node

Version:

A convenient wrapper to access the Pantry storage API

17 lines (15 loc) 255 B
import eslint from '@rollup/plugin-eslint' export default { input: 'src/pantry.js', output: { name: 'Pantry', file: 'dist/pantry.js', format: 'umd', }, plugins: [ eslint({ fix: true, throwOnError: true, }), ], }