feat(adapter): added adapter mysql

This commit is contained in:
vicente1992
2022-12-02 09:41:57 -05:00
parent 7d41699207
commit 717a7dc95f
4 changed files with 612 additions and 417 deletions

View File

@@ -21,4 +21,13 @@ module.exports = [
},
plugins: [commonjs()],
},
{
input: join(__dirname, 'src', 'mysql', 'index.js'),
output: {
banner: banner['banner.output'].join(''),
file: join(__dirname, 'lib', 'mysql', 'index.cjs'),
format: 'cjs',
},
plugins: [commonjs()],
},
]