chore(add husky): add standard and commitlint

This commit is contained in:
youxingzhi
2018-12-11 11:16:29 +08:00
parent 2b2b1419ad
commit 867ef2a7fa
8 changed files with 31 additions and 17 deletions

View File

@@ -2,9 +2,6 @@ var webpack = require('webpack')
var merge = require('webpack-merge')
var HtmlWebpackPlugin = require('html-webpack-plugin')
var baseConfig = require('./webpack.base.conf')
var path = require('path')
var projectRoot = path.resolve(__dirname, '../')
module.exports = merge(baseConfig, {
entry: './dev/index.js',
@@ -25,4 +22,4 @@ module.exports = merge(baseConfig, {
}),
new webpack.HotModuleReplacementPlugin()
]
})
})