Browse Source

update index.js

pull/3758/head
afc163 8 years ago
parent
commit
1fde7de404
  1. 5
      index.js

5
index.js

@ -1,6 +1,4 @@
/* eslint no-console:0 */
// this file is not used if use https://github.com/ant-design/babel-plugin-import
function camelCase(name) {
return name.charAt(0).toUpperCase() +
name.slice(1).replace(/-(\w)/g, (m, n) => {
@ -8,10 +6,9 @@ function camelCase(name) {
});
}
// Just import style for https://github.com/ant-design/ant-design/issues/3745
const req = require.context('./components', true, /^\.\/[^_][\w-]+\/(style\/)index\.tsx?$/);
console.log(req.keys());
req.keys().forEach((mod) => {
let v = req(mod);
if (v && v.default) {

Loading…
Cancel
Save