Skip to content

Commit

Permalink
update dependencies and fix lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jhchen committed Dec 27, 2018
1 parent 2f8fec8 commit df98522
Show file tree
Hide file tree
Showing 4 changed files with 2,330 additions and 2,869 deletions.
5 changes: 3 additions & 2 deletions _develop/webpack.config.js
Expand Up @@ -39,7 +39,7 @@ const jsRules = {
options: {
presets: [
[
'env',
'@babel/env',
{
targets: {
browsers: [
Expand Down Expand Up @@ -156,7 +156,8 @@ module.exports = env => {
entry: { 'quill.min.js': './quill.js' },
devtool: 'source-map',
};
} else if (env && env.coverage) {
}
if (env && env.coverage) {
baseConfig.module.rules[0].use[0].options.plugins = ['istanbul'];
return baseConfig;
}
Expand Down

0 comments on commit df98522

Please sign in to comment.