ant-design/index-with-locales.js

12 lines
287 B
JavaScript
Raw Normal View History

2017-02-17 09:36:42 +08:00
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);
});
module.exports = antd;