Skip to content

Commit

Permalink
fix: wrong name output
Browse files Browse the repository at this point in the history
Wrong output name file
  • Loading branch information
Saeger committed Feb 15, 2022
1 parent 111d8bf commit bba074e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const libEntrypoint = 'index';
export default {
input: `lib/${libEntrypoint}.ts`,
output: [
{ file: pkg.main, name: camelCase(libraryName), format: 'umd', sourcemap: true },
{ file: pkg.main, name: camelCase(libEntrypoint), format: 'umd', sourcemap: true },
{ file: pkg.module, format: 'es', sourcemap: true }
],
external: ['@types/content-type', 'ajv', 'content-type', 'joi', 'joi-to-swagger', 'openapi3-ts'],
Expand Down

0 comments on commit bba074e

Please sign in to comment.