mirror of
https://github.com/cheveguerra/bot-whatsapp.git
synced 2026-04-18 11:39:15 +00:00
11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
const commonjs = require('@rollup/plugin-commonjs')
|
|
|
|
module.exports = {
|
|
input: 'index.js',
|
|
output: {
|
|
file: 'lib/cli/bundle.cli.cjs',
|
|
format: 'cjs',
|
|
},
|
|
plugins: [commonjs()],
|
|
}
|