mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
9aec72c395
* chore: remove useless tsx support * add * add * style * fix lint * fix lint * fix lint * update locale entry * update locale entry * update locale entry * delete useless style
13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
const antd = require('./components');
|
|
|
|
const req = require.context('./components', true, /^\.\/locale\/.+_.+\.tsx?$/);
|
|
|
|
antd.locales = {};
|
|
|
|
req.keys().forEach((mod) => {
|
|
const matches = mod.match(/\/([^/]+).tsx?$/);
|
|
antd.locales[matches[1]] = req(mod).default;
|
|
});
|
|
|
|
module.exports = antd;
|