From 7e6d5ca343dc618f5ec7e6a11b67c43f5a7287ef Mon Sep 17 00:00:00 2001 From: Ross Brodbeck Date: Fri, 17 Jul 2020 08:48:19 -0400 Subject: [PATCH] Add basic dependabot config (#37) --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..96120f8 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +version: 2 +updates: + # Enable version updates for npm + - package-ecosystem: "npm" + # Look for `package.json` and `lock` files in the `root` directory + directory: "/" + # Check the npm registry for updates every day (weekdays) + schedule: + interval: "daily" \ No newline at end of file