Skip to content

Commit

Permalink
chore: update renovate config and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonpraful committed Mar 13, 2024
1 parent a9d1d36 commit 4af0b85
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @jasonpraful/vite-boilerplate

## 0.1.1

### Patch Changes

- update renovate config and readme

## 0.1.0

### Minor Changes
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@

## Getting Started

```bash
npx @jasonpraful/scripts
```

> Feeling adventurous? You can use the following commands to manually setup the
> project:
```bash
git clone https://github.com/jasonpraful/vite-boilerplate
cd vite-boilerplate
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jasonpraful/vite-boilerplate",
"version": "0.1.0",
"version": "0.1.1",
"type": "module",
"private": false,
"author": "Jason Praful <jason.praful@gmail.com>",
Expand Down
26 changes: 22 additions & 4 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"dependencyDashboard": true,
"dependencyDashboardLabels": ["dependencies :scroll:"],
"rangeStrategy": "bump",
"lockFileMaintenance": {
"enabled": true,
"schedule": ["before 4am on Friday"]
},
"minimumReleaseAge": "10 days",
"internalChecksFilter": "strict",
"schedule": ["before 4am on Friday"],
"automergeStrategy": "squash",
"packageRules": [
{
"matchUpdateTypes": ["patch", "lockFileMaintenance"],
"groupName": "patch updates",
"automerge": true,
"automergeType": "pr",
"platformAutomerge": true
}
]
}

0 comments on commit 4af0b85

Please sign in to comment.