Authored by ccbikai

完善构建

... ... @@ -42,6 +42,7 @@
},
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-loader": "^6.2.4",
"eslint": "^3.0.1",
"eslint-config-yoho": "^1.0.1",
"eslint-plugin-html": "^1.5.1",
... ... @@ -66,6 +67,7 @@
"postcss-use": "^2.2.0",
"precss": "^1.4.0",
"shelljs": "^0.7.0",
"style-loader": "^0.13.1",
"stylelint": "^6.9.0",
"stylelint-config-yoho": "^1.2.5",
"vue-loader": "^8.5.3",
... ...
... ... @@ -44,6 +44,13 @@ module.exports = {
loaders: [{
test: /\.vue$/,
loader: 'vue'
}, {
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel?presets[]=es2015&plugins[]=transform-runtime&comments=false'
}, {
test: /\.css$/,
loader: 'style!css?-url'
}]
},
resolve: {
... ...