diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d59cfa0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,16 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "npm" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "daily" + ignore: + # Perform patch updates only + - dependency-name: "*" + update-types: + ["version-update:semver-major", "version-update:semver-minor"] diff --git a/package.json b/package.json index 28cbcfa..d4833cf 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,7 @@ ], "scripts": { "lint:fix": "eslint . --fix", + "prettier:fix": "prettier . --write", "print-config": "eslint --print-config .eslintrc.js", "semantic-release": "semantic-release", "test": "prettier . --check && eslint ."