Skip to content

Commit bdff826

Browse files
fix: rollup build lodash mergewith import error (#23)
1 parent e575d19 commit bdff826

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rollup.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import dts from 'rollup-plugin-dts';
77

88
import pkg from './package.json' assert { type: 'json' };
99

10-
const external = Object.keys(pkg.peerDependencies);
10+
const external = [...Object.keys(pkg.peerDependencies), 'lodash.mergewith'];
1111

1212
/** @type {import('rollup').RollupOptions[]} */
1313
export default [

0 commit comments

Comments
 (0)