-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description Update dependencies which adds the use of the algolia search feature for our apps. Update renovate configuration for managing updates.
- Loading branch information
1 parent
0e19659
commit 4e19790
Showing
6 changed files
with
78 additions
and
22 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
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
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
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
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 |
---|---|---|
@@ -1,3 +1,53 @@ | ||
{ | ||
"extends": ["github>nuxt/renovate-config-nuxt"] | ||
"extends": [ | ||
"github>nuxt/renovate-config-nuxt", | ||
"config:recommended", | ||
"group:allNonMajor", | ||
":semanticCommitTypeAll(chore)" | ||
], | ||
"timezone": "Europe/London", | ||
"schedule": ["every weekend"], | ||
"semanticCommits": "enabled", | ||
"packageRules": [ | ||
{ | ||
"groupName": "Nuxt Dependencies", | ||
"groupSlug": "template-deps", | ||
"matchPackageNames": [ | ||
"@matterlabs/docs-nuxt-template", | ||
"@iconify-json/**", | ||
"@nuxt**", | ||
"nuxt**", | ||
"vue-easy-lightbox", | ||
"@docsearch/**", | ||
"rehype-katex", | ||
"remark-math", | ||
"dayjs" | ||
] | ||
}, | ||
{ | ||
"groupName": "ZK Dependencies", | ||
"groupSlug": "zk-deps", | ||
"matchPackageNames": ["ethers", "hardhat", "zksync-ethers"] | ||
}, | ||
{ | ||
"groupName": "Tooling Dependencies", | ||
"groupSlug": "tooling-deps", | ||
"matchPackageNames": [ | ||
"eslint", | ||
"@commitlint/**", | ||
"cspell", | ||
"husky", | ||
"lint-staged", | ||
"semantic-release", | ||
"markdownlint**", | ||
"prettier**", | ||
"typescript", | ||
"vue-tsc", | ||
"@playwright/test", | ||
"@vue/test-utils", | ||
"node-pty", | ||
"pm2" | ||
] | ||
} | ||
] | ||
} |