ant-design / ant-design-dark-theme

🌚 Dark theme variables of Ant Design
https://www.antdtheme.com/dark
MIT License
481 stars 34 forks source link

Problem about circular dependency #29

Open moonrailgun opened 3 years ago

moonrailgun commented 3 years ago

I clone antd and try to modify some component

Then, I found antd require antd-pro-merge-less antd-pro-merge-less require @ant-design/dark-theme, and then @ant-design/dark-theme require antd.

Yeah, When i try to run node ./scripts/generate-color-less in antd, its throw

Error: Cannot find module 'antd/dist/dark-theme'

@ant-design/dark-theme not install antd, because its a devDependency.

How can i fix it? Thanks for your reply

moonrailgun commented 3 years ago

soft link antd into its self node_module/antd can fix it.

Its any graceful solution?