Skip to content

Commit

Permalink
fix: fix cjs build (#3515)
Browse files Browse the repository at this point in the history
* fix: fix cjs build

* fix: fix cjs build

* chore: fix build
  • Loading branch information
uyarn committed Mar 7, 2025
1 parent c035b46 commit 5ec3e1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import ignoreImport from 'rollup-plugin-ignore-import';
import pkg from '../package.json';

const name = 'tdesign';
const externalDeps = Object.keys(pkg.dependencies || {}).concat([/lodash/, /@babel\/runtime/]);
const externalDeps = Object.keys(pkg.dependencies || {}).concat([/@babel\/runtime/]);
const externalPeerDeps = Object.keys(pkg.peerDependencies || {});
const banner = `/**
* ${name} v${pkg.version}
Expand Down

0 comments on commit 5ec3e1b

Please sign in to comment.