Wei Zhu
8 years ago
committed by
Benjy Cui
2 changed files with 21 additions and 0 deletions
@ -0,0 +1,11 @@ |
|||
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; |
Loading…
Reference in new issue