diff --git a/.changeset/kind-cars-perform.md b/.changeset/kind-cars-perform.md new file mode 100644 index 0000000000..a29abf44a7 --- /dev/null +++ b/.changeset/kind-cars-perform.md @@ -0,0 +1,5 @@ +--- +"@channel.io/bezier-react": patch +--- + +Fixes an issue where the height of `TextArea` component is not specified correctly. Modify the build settings to match the package.json exports fields change in 8.5.0 of `react-textarea-autosize`. diff --git a/packages/bezier-react/rollup.config.mjs b/packages/bezier-react/rollup.config.mjs index a67d536c1f..2d21a106d7 100644 --- a/packages/bezier-react/rollup.config.mjs +++ b/packages/bezier-react/rollup.config.mjs @@ -43,7 +43,10 @@ const generateConfig = ({ peerDeps: true, packagePath: './package.json', }), - nodeResolve({ extensions }), + nodeResolve({ + browser: true, + extensions, + }), /** * **IMPORTANT**: Order matters! * When using @rollup/plugin-babel with @rollup/plugin-commonjs in the same Rollup configuration,