From 3c7b237bce92f2c250b48c2e27baff66780c05a3 Mon Sep 17 00:00:00 2001 From: Aram Grigoryan <132480+aram356@users.noreply.github.com> Date: Tue, 10 Feb 2026 14:52:21 -0800 Subject: [PATCH 1/2] Add npm package ecosystem to Dependabot config --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e78d9b3..e93be1f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,8 @@ updates: directory: '/' # Location of package manifests schedule: interval: 'weekly' + + - package-ecosystem: 'npm' # See documentation for possible values + directory: 'docs' # Location of package manifests + schedule: + interval: 'weekly' From c01697784c4ad1018545949aef4ebfa0238fe28b Mon Sep 17 00:00:00 2001 From: Aram Grigoryan <132480+aram356@users.noreply.github.com> Date: Tue, 10 Feb 2026 14:54:50 -0800 Subject: [PATCH 2/2] Fix directory path in dependabot configuration --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e93be1f..6ac876f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,6 +11,6 @@ updates: interval: 'weekly' - package-ecosystem: 'npm' # See documentation for possible values - directory: 'docs' # Location of package manifests + directory: 'docs/' # Location of package manifests schedule: interval: 'weekly'