extends conditional class

This commit is contained in:
Leifer Mendez
2022-11-09 12:28:20 +01:00
parent 24484015b3
commit 39e2356feb
15 changed files with 137 additions and 75 deletions

View File

@@ -0,0 +1,10 @@
const commonjs = require('@rollup/plugin-commonjs')
module.exports = {
input: 'index.js',
output: {
file: 'lib/database/bundle.database.cjs',
format: 'cjs',
},
plugins: [commonjs()],
}