ant-design/index-with-locales.js

13 lines
291 B
JavaScript
Raw Normal View History

2017-02-17 09:36:42 +08:00
const antd = require('./components');
2018-11-16 20:14:02 +08:00
const req = require.context('./components', true, /^\.\/locale\/.+_.+\.tsx$/);
2017-02-17 09:36:42 +08:00
antd.locales = {};
req.keys().forEach((mod) => {
const matches = mod.match(/\/([^/]+).tsx$/);
antd.locales[matches[1]] = req(mod).default;
2017-02-17 09:36:42 +08:00
});
module.exports = antd;