Files
bot-whatsapp/packages/provider/rollup-cli.config.js
Leifer Mendez a20b128ee8 working pkgs
2022-11-11 20:28:49 +01:00

13 lines
231 B
JavaScript

const { join } = require('path')
const PATH = join(__dirname, 'lib', 'provider', 'bundle.provider.cjs')
module.exports = {
input: 'index.js',
output: {
file: PATH,
format: 'cjs',
},
plugins: [],
}