mongo adapter:next step, continue conversation from db

This commit is contained in:
Leifer Mendez
2022-11-16 20:41:36 +01:00
parent 1290d6b478
commit ce8e7be9d7
11 changed files with 5236 additions and 225 deletions

View File

@@ -0,0 +1,21 @@
const commonjs = require('@rollup/plugin-commonjs')
const { join } = require('path')
module.exports = [
{
input: join(__dirname, 'mock', 'index.js'),
output: {
file: join(__dirname, 'lib', 'mock', 'index.cjs'),
format: 'cjs',
},
plugins: [commonjs()],
},
{
input: join(__dirname, 'mongo', 'index.js'),
output: {
file: join(__dirname, 'lib', 'mongo', 'index.cjs'),
format: 'cjs',
},
plugins: [commonjs()],
},
]