From 41aacd658d9da08ecd1a880685126b2cc5a276ce Mon Sep 17 00:00:00 2001 From: Steffen Neubauer Date: Sun, 12 Nov 2023 21:28:28 +0100 Subject: [PATCH] chore(dependabot): enable npm package ecosystem (#5370) Now that we have ESM support, we can enable Dependabot to auto-update packages. --- .github/dependabot.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bd75773d7b..aedd2afb11 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -17,10 +17,9 @@ updates: open-pull-requests-limit: 5 schedule: interval: "weekly" - # TODO: Consider enabling the NPM package ecosystem once we have fixed our build process to support pure ESM build dependencies, see also https://github.com/garden-io/garden/issues/3841 # Automatically update NPM packages - # - package-ecosystem: "npm" - # directory: "/" - # open-pull-requests-limit: 5 - # schedule: - # interval: "daily" + - package-ecosystem: "npm" + directory: "/" + open-pull-requests-limit: 5 + schedule: + interval: "weekly"