mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-23 18:50:06 +08:00
81d8eb8afe
* ConfigProvider support locale * update docs * update category * clean up * moving locale * update check script * update related code * add test case * demo link * update doc * hide one rule of md with eslint * update error link
13 lines
289 B
JavaScript
13 lines
289 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;
|