First private release. Check updated README.md for details
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2023-04-30 13:29:47 +02:00
parent 831e607591
commit 5ae59102b5
36 changed files with 890 additions and 875 deletions

View File

@@ -30,13 +30,14 @@ export function createConfig({ pkg, external = [] }) {
},
strictDeprecations: true,
output: [
{
format: 'cjs',
file: pkg.main,
exports: 'named',
footer: 'module.exports = Object.assign(exports.default, exports);',
sourcemap: true
},
// TODO: cjs output not supported for now
// {
// format: 'cjs',
// file: pkg.main,
// exports: 'named',
// footer: 'module.exports = Object.assign(exports.default, exports);',
// sourcemap: true
// },
{
format: 'es',
file: pkg.module,
@@ -57,7 +58,6 @@ export function createConfig({ pkg, external = [] }) {
...commonOpts,
babelHelpers: "bundled",
}),
// typescript({ sourceMap: true })]
]
};
}