Skip to content

Commit

Permalink
Merge pull request #189 from wagoid/chore/upgrade-deps
Browse files Browse the repository at this point in the history
chore: upgrade dependencies
  • Loading branch information
wagoid committed Jul 15, 2021
2 parents baffd3c + 5463926 commit 711b4f4
Show file tree
Hide file tree
Showing 19 changed files with 19,361 additions and 13,302 deletions.
21 changes: 20 additions & 1 deletion .eslintrc.json
@@ -1,10 +1,29 @@
{
"extends": ["airbnb-base", "prettier", "plugin:node/recommended"],
"plugins": ["prettier"],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js"]
}
}
},
"rules": {
"prettier/prettier": "error",
"no-console": "off",
"no-process-exit": "off",
"node/no-unpublished-require": "off"
"node/no-unpublished-require": "off",
"node/no-unpublished-import": "off",
"node/no-unsupported-features/es-syntax": "off",
"import/extensions": [
"error",
{
"js": "always"
}
]
}
}
File renamed without changes.
2 changes: 1 addition & 1 deletion .husky/.gitignore
@@ -1 +1 @@
_
_
File renamed without changes.
15 changes: 0 additions & 15 deletions .versionrc.js

This file was deleted.

12 changes: 12 additions & 0 deletions .versionrc.json
@@ -0,0 +1,12 @@
{
"packageFiles": ["package.json"],
"bumpFiles": [
"package.json",
"package-lock.json",
{
"filename": "action.yml",
"updater": "./.github/tasks/actionYamlUpdater.cjs"
}
],
"releaseCommitMessageFormat": "chore(release): publish {{currentTag}} [skip-ci]"
}
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM node:12-alpine3.9
FROM node:16-alpine3.13

RUN apk --no-cache add git

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion jest.config.js
@@ -1,5 +1,6 @@
module.exports = {
export default {
// Automatically clear mock calls and instances between every test
clearMocks: true,
testEnvironment: '@commitlint/test-environment',
transform: {},
}

0 comments on commit 711b4f4

Please sign in to comment.