midi-shell-commands 1.2.51 → 1.2.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/renovate.json +32 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "midi-shell-commands",
3
- "version": "1.2.51",
3
+ "version": "1.2.52",
4
4
  "author": "Dawson Toth",
5
5
  "repository": "https://github.com/dawsontoth/midi-shell-commands.git",
6
6
  "scripts": {
package/renovate.json CHANGED
@@ -1,26 +1,34 @@
1
1
  {
2
- "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
- "extends": [
4
- "config:recommended"
5
- ],
6
- "lockFileMaintenance": {
7
- "enabled": true,
8
- "automerge": true
9
- },
10
- "packageRules": [
11
- {
12
- "matchDepTypes": [
13
- "action"
14
- ],
15
- "pinDigests": true
16
- },
17
- {
18
- "matchUpdateTypes": [
19
- "minor",
20
- "patch"
21
- ],
22
- "matchCurrentVersion": "!/^0/",
23
- "automerge": true
24
- }
25
- ]
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "config:recommended"
5
+ ],
6
+ "timezone": "America/New_York",
7
+ "schedule": [
8
+ "before 9am on Monday"
9
+ ],
10
+ "semanticCommits": "enabled",
11
+ "minimumReleaseAge": "3 days",
12
+ "internalChecksFilter": "strict",
13
+ "lockFileMaintenance": { "enabled": false },
14
+ "packageRules": [
15
+ {
16
+ "groupName": "pin digests",
17
+ "groupSlug": "all-digests",
18
+ "matchDepTypes": [
19
+ "action"
20
+ ],
21
+ "pinDigests": true
22
+ },
23
+ {
24
+ "groupName": "all non-major dependencies",
25
+ "groupSlug": "all-minor-patch",
26
+ "matchUpdateTypes": [
27
+ "minor",
28
+ "patch"
29
+ ],
30
+ "matchCurrentVersion": "!/^0/",
31
+ "automerge": true
32
+ }
33
+ ]
26
34
  }