Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/07_deps_maintenance_task.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ assignees: ''

See [notion page](https://www.notion.so/satoshilabs/Dependency-Management-1b5bf845aa1f4ca7b9d57ea9ccd3fe63) for more details.

πŸ’‘ _Hint:_ `ncu --deep -u -c 14 -t greatest --pre 0 -f DEP_NAME` to honor the [npmMinimalAgeGate](https://github.com/trezor/trezor-suite/blob/develop/.yarnrc.yml) when using [ncu](https://www.npmjs.com/package/npm-check-updates)

## QA instructions

🚧 not known yet, will be discovered – it depends on specific list of updated dependencies.
Expand Down
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
# Note that this just limits age of the versions that dependabot suggests, not a limit for installation (that's in .yarnrc.yml)
cooldown:
default-days: 14
include:
- "*"
exclude:
- "@evolu/*"
- "@types/invity-api"
7 changes: 7 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ logFilters:

nodeLinker: node-modules

# Allow only packages older than 14 days (in minutes). Schema declares that "14d" can be entered, but that doesn't have any effect.
npmMinimalAgeGate: 20160
# Skip age gate for experimental, rapidly changing packages
npmPreapprovedPackages:
- "@evolu/*"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- "@evolu/*"
- "@evolu/*"
- "@types/invity-api"

our package

Copy link
Contributor Author

@Lemonexe Lemonexe Nov 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added βœ”οΈ

In case of .yarnrc.yml it works with names in form @scope/name@resolver, in our case resolver is always npm, so I wrote it @* at the end, which will mean any version

- "@types/invity-api@*"

plugins:
- checksum: 5e73a1acbb9741fce1e8335e243c9480ea2107b9b4b65ed7643785ddea9e3019aee254a92a853b1cd71023b16fff5b7d3afd5256fe57cd35a54f8785b8c30281
path: .yarn/plugins/@yarnpkg/plugin-outdated.cjs
Expand Down
Loading