Skip to content

Commit

Permalink
feat(rollup): remove cjs and umd bundles
Browse files Browse the repository at this point in the history
  • Loading branch information
akoushke committed Mar 1, 2020
1 parent 30da5e6 commit 908c251
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,7 @@ const output = (name, format) => ({
export default [
{
input: 'src/index.js',
output: [
output('webexSDKComponentAdapter', 'cjs'),
output('UMDWebexSDKComponentAdapter', 'umd'),
output('ESMWebexSDKComponentAdapter', 'esm'),
],
output: [output('ESMWebexSDKComponentAdapter', 'esm')],
plugins: [
resolve(),
babel({
Expand Down

0 comments on commit 908c251

Please sign in to comment.