ant-design/index-with-locales.js
lijianan 9aec72c395
chore: remove useless tsx support (#39890)
* chore: remove useless tsx support

* add

* add

* style

* fix lint

* fix lint

* fix lint

* update locale entry

* update locale entry

* update locale entry

* delete useless style
2022-12-29 18:33:13 +08:00

13 lines
293 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;