renovate/test/config/__snapshots__/index.spec.js.snap
Rhys Arkins d2ad057a33 feat: Improve depTypes configuration (#577)
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.
2017-08-02 14:05:45 +02:00

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`;