Skip to content

Commit

Permalink
fix(): Made classnames external
Browse files Browse the repository at this point in the history
  • Loading branch information
ykadosh committed Jul 29, 2021
1 parent 91a13b2 commit ae2a8b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rollup/rollup.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ export default {
'react-dom',
'react-is',
'prop-types',
'classnames',
],
plugins: () => ([// Must be a function so that plugin's instances are regenerated for every config
resolve({extensions: ['.js', '.jsx']}),
commonjs({include: /node_modules/}),
babel({babelHelpers: 'runtime', exclude: /node_modules/}),
])
]),
};
1 change: 1 addition & 0 deletions rollup/rollup.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const globals = {
'react': 'React',
'react-dom': 'ReactDOM',
'prop-types': 'PropTypes',
'classnames': 'classNames',
};

export const production = {
Expand Down

0 comments on commit ae2a8b5

Please sign in to comment.