Skip to content

Commit

Permalink
Merge pull request #147 from elenabravo/feature/update-dependencies
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
noahbravo committed Dec 7, 2023
2 parents 72fd6c1 + 5757008 commit da04e76
Show file tree
Hide file tree
Showing 4 changed files with 7,983 additions and 3,572 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"FileReader": false
},
"plugins": ["import", "promise", "node"],
"extends": ["standard", "plugin:prettier/recommended"],
"extends": ["plugin:prettier/recommended"],
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
Expand Down
4 changes: 3 additions & 1 deletion config/webpack.config.dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const path = require('path')
const { merge } = require('webpack-merge')
const baseConfig = require('./webpack.config.base')
const projectConfig = require('./project.config')
const ESLintPlugin = require('eslint-webpack-plugin')
const { srcPath } = projectConfig

const mode = 'development'
Expand All @@ -23,5 +24,6 @@ module.exports = merge(baseConfig(mode), {
devtool: 'source-map',
resolve: {
extensions: ['.js', '.css']
}
},
plugins: [new ESLintPlugin()]
})
Loading

0 comments on commit da04e76

Please sign in to comment.