@scaleleap/renovate-config
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -6,2 +6,11 @@ # Changelog | ||
# [1.1.0](https://github.com/ScaleLeap/renovate-config/compare/v1.0.0...v1.1.0) (2020-03-24) | ||
### Features | ||
* adds schedule constants ([9e9048e](https://github.com/ScaleLeap/renovate-config/commit/9e9048e9e019828c648e5583efa5807aade3ad45)) | ||
* adds typescriptEslint preset ([31a04e4](https://github.com/ScaleLeap/renovate-config/commit/31a04e4e6b5eed48c3ac01beb38d46303e3a0964)) | ||
* sets time zone to Etc/UTC ([5fa0209](https://github.com/ScaleLeap/renovate-config/commit/5fa020901fa69988b7e4ca489ed29b015f24c884)) | ||
# 1.0.0 (2020-03-23) | ||
@@ -8,0 +17,0 @@ |
@@ -11,3 +11,3 @@ { | ||
"homepage": "https://github.com/ScaleLeap/renovate-config/#readme", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"main": "lib/index.js", | ||
@@ -31,7 +31,7 @@ "files": [ | ||
"devDependencies": { | ||
"@scaleleap/semantic-release-config": "1.1.1", | ||
"@scaleleap/semantic-release-config": "1.1.2", | ||
"@types/jest": "25.1.4", | ||
"@types/node": "13.9.3", | ||
"@typescript-eslint/eslint-plugin": "2.24.0", | ||
"@typescript-eslint/parser": "2.24.0", | ||
"@typescript-eslint/eslint-plugin": "2.25.0", | ||
"@typescript-eslint/parser": "2.25.0", | ||
"danger": "10.0.0", | ||
@@ -46,4 +46,4 @@ "eslint": "6.8.0", | ||
"post-npm-install": "2.0.0", | ||
"prettier": "1.19.1", | ||
"renovate": "19.176.3", | ||
"prettier": "2.0.2", | ||
"renovate": "19.179.0", | ||
"rimraf": "3.0.2", | ||
@@ -69,3 +69,4 @@ "ts-jest": "25.2.1", | ||
"@scaleleap:devDependencies", | ||
"@scaleleap:minorDependencies" | ||
"@scaleleap:minorDependencies", | ||
"@scaleleap:typescriptEslint" | ||
] | ||
@@ -75,4 +76,3 @@ }, | ||
"extends": [ | ||
"config:base", | ||
"schedule:weekdays" | ||
"config:base" | ||
], | ||
@@ -82,3 +82,7 @@ "labels": [ | ||
], | ||
"semanticCommits": true | ||
"schedule": [ | ||
"every weekday" | ||
], | ||
"semanticCommits": true, | ||
"timezone": "Etc/UTC" | ||
}, | ||
@@ -107,4 +111,16 @@ "devDependencies": { | ||
] | ||
}, | ||
"typescriptEslint": { | ||
"packageRules": [ | ||
{ | ||
"packagePatterns": [ | ||
"^@typescript-eslint/" | ||
], | ||
"schedule": [ | ||
"before 3am on the first day of the month" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} |
@@ -10,7 +10,5 @@ ![](https://raw.githubusercontent.com/ScaleLeap/renovate-config/master/docs/assets/header.png) | ||
This package does one, two and three. | ||
## Installation | ||
Create a `renovate.json` in your project root, with the following settings: | ||
Create a `renovate.json` in your project root, with the following: | ||
@@ -28,4 +26,10 @@ ```json | ||
1. Create or edit a preset in `src/presets/*.ts` | ||
2. Run `npm start` to commit changes to `package.json` | ||
3. Run `npm t` for tests | ||
This repository uses [Conventional Commit](https://www.conventionalcommits.org/) style commit messages. | ||
Use [Configuration Options](https://docs.renovatebot.com/configuration-options/) for reference. | ||
## Authors or Acknowledgments | ||
@@ -32,0 +36,0 @@ |
6441
46