docs(example): example bot

This commit is contained in:
Leifer Mendez
2022-11-28 19:01:03 +01:00
parent 7463b8badc
commit 86eebbead6
13 changed files with 175 additions and 9749 deletions

View File

@@ -3,7 +3,7 @@ const commonjs = require('@rollup/plugin-commonjs')
module.exports = [
{
input: join(__dirname, 'web-whatsapp', 'index.js'),
input: join(__dirname, 'src', 'web-whatsapp', 'index.js'),
output: {
file: join(__dirname, 'lib', 'web-whatsapp', 'index.cjs'),
format: 'cjs',
@@ -11,7 +11,7 @@ module.exports = [
plugins: [commonjs()],
},
{
input: join(__dirname, 'twilio', 'index.js'),
input: join(__dirname, 'src', 'twilio', 'index.js'),
output: {
file: join(__dirname, 'lib', 'twilio', 'index.cjs'),
format: 'cjs',
@@ -19,7 +19,7 @@ module.exports = [
plugins: [commonjs()],
},
{
input: join(__dirname, 'mock', 'index.js'),
input: join(__dirname, 'src', 'mock', 'index.js'),
output: {
file: join(__dirname, 'lib', 'mock', 'index.cjs'),
format: 'cjs',