Skip to content

Commit ae37c91

Browse files
committed
Fix names of build outputs
1 parent 568c928 commit ae37c91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/rtk-query-codegen-openapi/tsup.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ export default defineConfig((options): Options[] => {
1818
};
1919

2020
return [
21-
{ ...commonOptions, name: 'ESM', format: ['esm'], entry: { index: 'src/index.ts' }, dts: true },
22-
{ ...commonOptions, name: 'CJS', format: ['cjs'], entry: { index: 'src/index.ts' }, dts: true },
21+
{ ...commonOptions, name: 'Modern ESM', format: ['esm'], entry: { index: 'src/index.ts' }, dts: true },
22+
{ ...commonOptions, name: 'CJS Development', format: ['cjs'], entry: { index: 'src/index.ts' }, dts: true },
2323
{
2424
...commonOptions,
2525
format: ['esm'],
26-
name: 'BIN',
26+
name: 'CLI Development',
2727
external: ['@rtk-query/codegen-openapi'],
2828
minify: true,
2929
entry: { 'bin/cli': 'src/bin/cli.ts' },

0 commit comments

Comments
 (0)