forked from sigp/lighthouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c49751
commit 7ed438b
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Use `allow` to specify which dependencies to maintain | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
allow: | ||
# Allow updates for Lodash | ||
- dependency-name: "lodash" | ||
# Allow updates for React and any packages starting "react" | ||
- dependency-name: "react*" | ||
|
||
- package-ecosystem: "composer" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
allow: | ||
# Allow both direct and indirect updates for all packages | ||
- dependency-type: "all" | ||
|
||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
allow: | ||
# Allow only direct updates for | ||
# Django and any packages starting "django" | ||
- dependency-name: "django*" | ||
dependency-type: "direct" | ||
# Allow only production updates for Sphinx | ||
- dependency-name: "sphinx" | ||
dependency-type: "production" |