Skip to content

Commit

Permalink
feat: add renovate-config (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
leohxj authored Aug 27, 2019
1 parent 1b44155 commit 9814692
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages/renovate-config/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# @mjolnir/renovate-config

## install
`yarn add @mjolnir/renovate-config -D`

## useage

add below to `renovate.json`:

```json
{
"extends": ["@mjolnir/renovate-config"]
}
```
33 changes: 33 additions & 0 deletions packages/renovate-config/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "@mjolnir/renovate-config",
"version": "0.0.0",
"description": "",
"homepage": "https://github.com/mjolnirjs/mjolnir/tree/master/packages/renovate-config#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjolnirjs/mjolnir.git"
},
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1"
},
"renovate-config": {
"default": {
"extends": [
"config:base",
"schedule:weekly"
],
"automerge": true,
"major": {
"automerge": false
},
"rangeStrategy": "bump"
}
},
"bugs": {
"url": "https://github.com/mjolnirjs/mjolnir/issues"
}
}

0 comments on commit 9814692

Please sign in to comment.