Skip to content

Commit b5292c3

Browse files
committed
chore: lockfile maintaince
1 parent 8a01de3 commit b5292c3

File tree

5 files changed

+248
-250
lines changed

5 files changed

+248
-250
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/CI.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
node-version: 14
2727

2828
- name: Cache NPM dependencies
29-
uses: actions/cache@v1
29+
uses: actions/cache@v2
3030
with:
3131
path: node_modules
3232
key: npm-cache-${{ matrix.os }}-node@14-${{ hashFiles('yarn.lock') }}
@@ -44,17 +44,6 @@ jobs:
4444
yarn test
4545
yarn test:jest
4646
47-
merge:
48-
name: Auto Merge
49-
runs-on: ubuntu-latest
50-
needs:
51-
- test
52-
steps:
53-
- name: Auto merge
54-
uses: ridedott/merge-me-action@v2
55-
with:
56-
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
57-
5847
publish:
5948
name: Publish
6049
if: "startsWith(github.event.head_commit.message, 'chore(release): publish')"

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,18 @@
4747
"@types/babel__core": "^7.1.15",
4848
"@types/benchmark": "^2.1.1",
4949
"@types/lodash": "^4.14.172",
50-
"@types/node": "^16.6.1",
50+
"@types/node": "^16.7.1",
5151
"@types/sinon": "^10.0.2",
52-
"@typescript-eslint/eslint-plugin": "^4.29.2",
53-
"@typescript-eslint/parser": "^4.29.2",
52+
"@typescript-eslint/eslint-plugin": "^4.29.3",
53+
"@typescript-eslint/parser": "^4.29.3",
5454
"ava": "^3.15.0",
5555
"benchmark": "^2.1.4",
5656
"chalk": "^4.1.2",
57-
"esbuild": "^0.12.20",
57+
"esbuild": "^0.12.22",
5858
"eslint": "^7.32.0",
5959
"eslint-config-prettier": "^8.3.0",
60-
"eslint-plugin-import": "^2.24.0",
61-
"eslint-plugin-prettier": "^3.4.0",
60+
"eslint-plugin-import": "^2.24.1",
61+
"eslint-plugin-prettier": "^3.4.1",
6262
"husky": "^7.0.1",
6363
"lerna": "^4.0.0",
6464
"lint-staged": "^11.1.2",

renovate.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": ["config:base", ":preserveSemverRanges"],
3+
"packageRules": [
4+
{
5+
"automerge": true,
6+
"matchUpdateTypes": ["minor", "patch", "pin", "digest"]
7+
}
8+
],
9+
"lockFileMaintenance": {
10+
"enabled": true,
11+
"extends": ["schedule:weekly"]
12+
}
13+
}

0 commit comments

Comments
 (0)