Skip to content

A sharable config preset for renovate used by SMG automotive.

License

Notifications You must be signed in to change notification settings

smg-automotive/renovate-config

Repository files navigation

renovate-config

A sharable config preset for renovate used by SMG automotive.

Setup

Enable Renovate in your repository and create a renovate.json file in the root of your project:

{
  "extends": [
    "github>smg-automotive/renovate-config"
  ]
}

By default, renovate will pin all dev dependencies and uses SemVer ranges for the others. If you work on a project that is not required() by any other package, add github>smg-automotive/renovate-config:web to renovate.json.

{
  "extends": [
    "github>smg-automotive/renovate-config",
    "github>smg-automotive/renovate-config:web"
  ]
}

With that, we are following the recommendation from renovate.

Excluding default settings

If the configuration does not fit your project, you can exclude certain presets by adding:

{
  "ignorePresets": [
    "github>smg-automotive/renovate-config:groupLtsNodeVersions"
  ]
}

Supporting updates from a private registry

If you're relying on SMG packages shipped via private npm registry you can add

{
  "extends": [
    "github>smg-automotive/renovate-config:npmGitHubRegistry"
  ]
}

to your configuration to allow renovate checking for dependency updates.

About

A sharable config preset for renovate used by SMG automotive.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published