mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 12:39:49 +08:00
26 lines
677 B
JavaScript
26 lines
677 B
JavaScript
/* eslint no-console:0 */
|
|
|
|
function camelCase(name) {
|
|
return name.charAt(0).toUpperCase() +
|
|
name.slice(1).replace(/-(\w)/g, (m, n) => n.toUpperCase());
|
|
}
|
|
|
|
var req = require.context('./components', true, /^\.\/[^_][\w-]+\/(style\/)?index\.tsx?$/);
|
|
|
|
req.keys().forEach((mod) => {
|
|
var v = req(mod);
|
|
if (v && v.default) {
|
|
v = v.default;
|
|
}
|
|
var match = mod.match(/^\.\/([^_][\w-]+)\/index\.tsx?$/);
|
|
if (match && match[1]) {
|
|
exports[camelCase(match[1])] = v;
|
|
}
|
|
});
|
|
|
|
|
|
if (typeof console !== 'undefined' && console.warn) {
|
|
console.warn('you are using prebuild antd,\
|
|
please use https://github.com/ant-design/babel-plugin-antd to reduce app bundle size.');
|
|
}
|