Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
v3.1.0 - Update dependencies and remove babel.js usage (#60)
Browse files Browse the repository at this point in the history
* Bump up packages.
* Update additional packages to their latest versions.
* Remove Babel and upgrade webpack.
* v3.1.0
  • Loading branch information
radekk authored Aug 31, 2020
1 parent 9d5ebb7 commit 62ec285
Show file tree
Hide file tree
Showing 6 changed files with 2,837 additions and 4,309 deletions.
23 changes: 0 additions & 23 deletions .babelrc

This file was deleted.

42 changes: 27 additions & 15 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,29 +7,41 @@
"eslint:recommended",
"airbnb-base"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6
},
"plugins": [
"import"
"import"
],
"rules": {
"comma-dangle": ["error", "never"],
"comma-dangle": [
"error",
"never"
],
"global-require": "off",
"import/no-dynamic-require": "off",
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["config/webpack.js", "test/**"]}],
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"config/webpack.js",
"test/**"
]
}
],
"no-bitwise": "off",
"no-console": "off",
"no-param-reassign": "off",
"no-plusplus": "off",
"strict": "off",
"max-len": ["error", 120, 2, {
"ignoreUrls": true,
"ignoreComments": false,
"ignoreRegExpLiterals": true,
"ignoreStrings": false,
"ignoreTemplateLiterals": false
}]
"max-len": [
"error",
120,
2,
{
"ignoreUrls": true,
"ignoreComments": false,
"ignoreRegExpLiterals": true,
"ignoreStrings": false,
"ignoreTemplateLiterals": false
}
]
}
}
}
2 changes: 1 addition & 1 deletion config/webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const webpack = require('webpack');
const distPath = path.join(__dirname, '../dist');

const config = {
mode: 'production',
cache: false,
target: 'node',
resolve: {
Expand All @@ -24,7 +25,6 @@ const config = {
{
test: /\.js$/,
exclude: [/node_modules/],
loader: 'babel-loader',
enforce: 'pre'
}
]
Expand Down
Loading

0 comments on commit 62ec285

Please sign in to comment.