Skip to content

Commit

Permalink
Updates dev dependencies to more modern version & fixes relevant rela…
Browse files Browse the repository at this point in the history
…ted issues.

Bumps copyright year.
  • Loading branch information
robinmalburn committed Aug 16, 2021
1 parent 038d066 commit e3c0ba8
Show file tree
Hide file tree
Showing 9 changed files with 12,619 additions and 41 deletions.
18 changes: 9 additions & 9 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"presets": [
["env", {
"useBuiltIns": true,
["@babel/preset-env", {
"useBuiltIns": false,
"modules":false,
"target": {
"browsers": ["chrome last 2 version"]
"targets": {
"browsers": ["last 2 chrome versions"]
}
}]
],
"env": {
"test":{
"presets": [
["env", {
["@babel/preset-env", {
"targets": {
"node": "current"
}
}]
]
},
"commonjs":{
"plugins": ["transform-es2015-modules-commonjs"],
"plugins": ["@babel/plugin-transform-modules-commonjs"],
"presets": [
["env", {
["@babel/preset-env", {
"modules":"commonjs"
}]
]
},
"umd":{
"plugins": ["transform-es2015-modules-umd"],
"plugins": ["@babel/plugin-transform-modules-umd"],
"presets": [
["env", {
["@babel/preset-env", {
"modules":"umd"
}]
]
Expand Down
7 changes: 5 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"parser": "babel-eslint",
"parser": "@babel/eslint-parser",
"extends": [
"airbnb-base",
"plugin:import/errors",
"plugin:import/recommended",
"plugin:import/warnings"
],
"plugins": [
"@babel"
]
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Robin Malburn
Copyright (c) 2018 - 2021 Robin Malburn

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit e3c0ba8

Please sign in to comment.