Skip to content

Commit

Permalink
build(rollup): move exports: named
Browse files Browse the repository at this point in the history
  • Loading branch information
Adnan Asani committed Dec 16, 2017
1 parent b02d227 commit 2ca76d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rollup.config.js
Expand Up @@ -4,6 +4,7 @@ import typescript from 'rollup-plugin-typescript';
export default {
input: path.resolve(__dirname, 'src', 'index.tsx'),
output: {
exports: 'named',
file: path.resolve(__dirname, 'dist', 'index.js'),
format: 'cjs',
},
Expand All @@ -13,5 +14,4 @@ export default {
}),
],
external: ['react'],
exports: 'named',
};

0 comments on commit 2ca76d8

Please sign in to comment.