add validation cli

This commit is contained in:
Leifer
2022-10-25 13:43:17 +02:00
parent 5dc81f60c0
commit ceade85334
21 changed files with 2093 additions and 144 deletions

View File

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