Skip to content
This repository has been archived by the owner on Feb 24, 2021. It is now read-only.

Commit

Permalink
chore: bumped deps and fixed eslint (#622)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando authored Jul 14, 2020
1 parent 7fe91b5 commit 34d2282
Show file tree
Hide file tree
Showing 6 changed files with 1,462 additions and 1,780 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ module.exports = {
root: true,
env: {
browser: true,
mocha: true
mocha: true,
node: true
},
extends: [
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
Expand Down
2 changes: 1 addition & 1 deletion build/webpack.dev.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const appConfig = require('../config/webConfig')
const merge = require('webpack-merge')
const { merge } = require('webpack-merge')
const path = require('path')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
Expand Down
2 changes: 1 addition & 1 deletion build/webpack.prod.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const path = require('path')
const utils = require('./utils')
const webpack = require('webpack')
const config = require('../config')
const merge = require('webpack-merge')
const { merge } = require('webpack-merge')
const baseWebpackConfig = require('./webpack.base.conf')
const CopyWebpackPlugin = require('copy-webpack-plugin')
const MiniCssExtractPlugin = require('mini-css-extract-plugin')
Expand Down
2 changes: 1 addition & 1 deletion config/dev.env.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
'use strict'
const merge = require('webpack-merge')
const { merge } = require('webpack-merge')
const prodEnv = require('./prod.env')
const appConfig = require('./app.js')

Expand Down
Loading

0 comments on commit 34d2282

Please sign in to comment.