fix(adapter): conflict resolution

This commit is contained in:
vicente1992
2022-12-07 17:14:16 -05:00
37 changed files with 1316 additions and 201 deletions

View File

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