mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
13 lines
296 B
JavaScript
13 lines
296 B
JavaScript
const antd = require('./components');
|
|
|
|
const req = require.context('./components', true, /^\.\/locale-provider\/.+_.+\.tsx$/);
|
|
|
|
antd.locales = {};
|
|
|
|
req.keys().forEach((mod) => {
|
|
const match = mod.match(/\/([^/]+).tsx$/);
|
|
antd.locales[match[1]] = req(mod).default;
|
|
});
|
|
|
|
module.exports = antd;
|