From e0a5e49c9bf212b91f08fa50f516ac2fcb5c2040 Mon Sep 17 00:00:00 2001 From: Ryan Waskiewicz Date: Tue, 9 May 2023 11:48:41 -0400 Subject: [PATCH] chore(repo): add `@stencil/*` packages to dependabot (#27431) Issue number: N/A --------- ## What is the current behavior? `@stencil/core` is the only package checked by dependabot ## What is the new behavior? this commit updates the allow list for dependabot to allow additional stencil-scoped packages. the motivation for this is to allow the other stencil dependencies used in ionic framework to be automatically bumped by automation, rather than making it a manual process. this is intended to help with the stencil v4 rollout, where new versions on stencil packages (other than core) will be released with early v4 support. ## Does this introduce a breaking change? - [ ] Yes - [x] No ## Other information I arbitrarily alphabetized the `@stencil/*` section of this allow-list. LMK if you'd prefer something different here --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9c263b8cbc..6a56927376 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,4 +8,8 @@ updates: allow: - dependency-name: "@playwright/test" - dependency-name: "@axe-core/playwright" + - dependency-name: "@stencil/angular-output-target" - dependency-name: "@stencil/core" + - dependency-name: "@stencil/react-output-target" + - dependency-name: "@stencil/sass" + - dependency-name: "@stencil/vue-output-target"