mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 08:36:26 +00:00
d2ad057a33
depTypes configuration is now refactored from being an array of strings/objects to having each type of dep (`dependencies`, `devDependencies`, `optionalDependencies`, `peerDependencies`) be a first class object in the namespace. The "old" way of configuring is still supported but is transformed using a migrateConfig script. Later, PRs will be raised to impacted repositories to suggest the new config.
50 lines
1.4 KiB
Text
50 lines
1.4 KiB
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`config/index mergeChildConfig(parentConfig, childConfig) merges 1`] = `
|
|
Object {
|
|
"branchName": "renovate/lock-files",
|
|
"commitMessage": "{{semanticPrefix}}Update lock file",
|
|
"enabled": true,
|
|
"groupName": "Lock File Maintenance",
|
|
"prBody": "This {{#if isGitHub}}Pull{{else}}Merge{{/if}} Request updates \`package.json\` lock files to use the latest dependency versions.
|
|
|
|
{{#if schedule}}
|
|
**Note**: This PR was created on a configured schedule (\\"{{schedule}}\\"{{#if timezone}} in timezone \`{{timezone}}\`{{/if}}) and will not receive updates outside those times.
|
|
{{/if}}
|
|
|
|
{{#if hasErrors}}
|
|
|
|
---
|
|
|
|
### Errors
|
|
|
|
Renovate encountered some errors when processing your repository, so you are being notified here even if they do not directly apply to this PR.
|
|
|
|
{{#each errors as |error|}}
|
|
- \`{{error.depName}}\`: {{error.message}}
|
|
{{/each}}
|
|
{{/if}}
|
|
|
|
{{#if hasWarnings}}
|
|
|
|
---
|
|
|
|
### Warnings
|
|
|
|
Please make sure the following warnings are safe to ignore:
|
|
|
|
{{#each warnings as |warning|}}
|
|
- \`{{warning.depName}}\`: {{warning.message}}
|
|
{{/each}}
|
|
{{/if}}
|
|
|
|
---
|
|
|
|
This {{#if isGitHub}}PR{{else}}MR{{/if}} has been generated by [Renovate Bot](https://renovateapp.com).",
|
|
"prTitle": "{{semanticPrefix}}Lock file maintenance",
|
|
"recreateClosed": true,
|
|
"schedule": "on monday",
|
|
}
|
|
`;
|
|
|
|
exports[`config/index mergeChildConfig(parentConfig, childConfig) merges depTypes 1`] = `undefined`;
|