Browse Source

🐛 fix windos class name (#3183)

pull/3194/head
陈小聪 7 years ago
committed by 陈帅
parent
commit
d9ae08dc8f
  1. 5
      config/config.js
  2. 3
      package.json

5
config/config.js

@ -3,6 +3,7 @@ import os from 'os';
import pageRoutes from './router.config';
import webpackPlugin from './plugin.config';
import defaultSettings from '../src/defaultSettings';
import slash from 'slash2';
const plugins = [
[
@ -96,8 +97,8 @@ export default {
}
const match = context.resourcePath.match(/src(.*)/);
if (match && match[1]) {
const antdProPath = match[1].replace('.less', '');
const arr = antdProPath
const antdProPath = match[1].replace('.less', '');
const arr = slash(antdProPath)
.split('/')
.map(a => a.replace(/([A-Z])/g, '-$1'))
.map(a => a.toLowerCase());

3
package.json

@ -93,7 +93,8 @@
"tslint-react": "^3.6.0",
"umi": "^2.2.7",
"umi-plugin-ga": "^1.1.3",
"umi-plugin-react": "^1.2.0"
"umi-plugin-react": "^1.2.0",
"slash2": "^2.0.0"
},
"optionalDependencies": {
"puppeteer": "^1.10.0"

Loading…
Cancel
Save