feat(provider): meta provider is added

This commit is contained in:
vicente1992
2022-12-15 00:14:15 -05:00
parent 0105dab2c4
commit 438607c222
4 changed files with 189 additions and 1 deletions

View File

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