Skip to content
This repository was archived by the owner on May 5, 2024. It is now read-only.

Commit 0069027

Browse files
authored
chore: skip commit verification + bump @babel/* dependencies
1 parent f910cca commit 0069027

File tree

7 files changed

+969
-532
lines changed

7 files changed

+969
-532
lines changed

.github/workflows/pre-release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ jobs:
1616

1717
steps:
1818
- name: "Checkout source code"
19-
uses: "actions/checkout@v2.3.4"
19+
uses: "actions/checkout@v3"
2020
with:
2121
lfs: true
2222
fetch-depth: 0
2323

24-
- id: yarn-cache
25-
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
26-
- uses: "actions/cache@v2.1.6"
24+
- name: "🔧 setup node"
25+
uses: actions/setup-node@v3
2726
with:
28-
path: ${{ steps.yarn-cache.outputs.dir }}
29-
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
27+
cache: "yarn"
28+
node-version: 16
29+
cache-dependency-path: "yarn.lock"
3030

3131
- run: "yarn install --frozen-lockfile"
3232
- run: "yarn lint"

.github/workflows/tagged-release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ jobs:
1414

1515
steps:
1616
- name: "Checkout source code"
17-
uses: "actions/checkout@v2.3.4"
17+
uses: "actions/checkout@v3"
1818
with:
1919
lfs: true
2020
fetch-depth: 0
2121

22-
- id: yarn-cache
23-
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
24-
- uses: "actions/cache@v2.1.6"
22+
- name: "🔧 setup node"
23+
uses: actions/setup-node@v3
2524
with:
26-
path: ${{ steps.yarn-cache.outputs.dir }}
27-
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
25+
cache: "yarn"
26+
node-version: 16
27+
cache-dependency-path: "yarn.lock"
2828

2929
- run: "yarn install --frozen-lockfile"
3030
- run: "yarn lint"

.github/workflows/tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818

1919
steps:
2020
- name: "Checkout source code"
21-
uses: "actions/checkout@v2.3.4"
21+
uses: "actions/checkout@v3"
2222
with:
2323
lfs: true
2424
fetch-depth: 0
2525

26-
- id: yarn-cache
27-
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
28-
- uses: "actions/cache@v2.1.6"
26+
- name: "🔧 setup node"
27+
uses: actions/setup-node@v3
2928
with:
30-
path: ${{ steps.yarn-cache.outputs.dir }}
31-
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
29+
cache: "yarn"
30+
node-version: 16
31+
cache-dependency-path: "yarn.lock"
3232

3333
- run: "yarn install --frozen-lockfile"
3434
- run: "yarn lint"

commitlint.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,9 @@ module.exports = {
55
'footer-max-line-length': [0, 'never'],
66
'body-max-line-length': [0, 'never'],
77
},
8-
ignores: [(message) => message.startsWith('chore(deps): ')],
8+
ignores: [
9+
(message) =>
10+
message.startsWith('chore(deps): ') ||
11+
message.includes('Update Github Runner Node version and deprecate set-output'),
12+
],
913
};

lerna.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
"version": "1.2.1",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
5-
"packages": [
6-
"packages/*"
7-
],
5+
"packages": ["packages/*"],
86
"command": {
97
"version": {
108
"allowBranch": "master",

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"config": {
1515
"eslintPaths": ".*.js *.js",
16-
"prettierPaths": "*.{json,md,yaml,yml} .github/**/*.{json,md,yaml,yml} !package.json !lerna.json"
16+
"prettierPaths": "*.{json,md} .github/**/*.yml"
1717
},
1818
"scripts": {
1919
"test": "yarn jest --env=node --colors",
@@ -30,11 +30,11 @@
3030
"release": "lerna version"
3131
},
3232
"devDependencies": {
33-
"@babel/core": "^7.13.16",
34-
"@babel/plugin-proposal-class-properties": "^7.12.1",
35-
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
36-
"@babel/preset-env": "^7.12.1",
37-
"@babel/preset-typescript": "^7.12.1",
33+
"@babel/core": "^7.22.5",
34+
"@babel/plugin-proposal-class-properties": "^7.18.6",
35+
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
36+
"@babel/preset-env": "^7.22.5",
37+
"@babel/preset-typescript": "^7.22.5",
3838
"@commitlint/cli": "^12.0.1",
3939
"@commitlint/config-conventional": "^12.0.1",
4040
"@types/jest": "^26.0.22",
@@ -49,8 +49,8 @@
4949
"jest": "^26.6.3",
5050
"jest-circus": "^26.6.3",
5151
"lerna": "^4.0.0",
52-
"prettier": "^2.1.2",
53-
"typescript": "^4.2.3"
52+
"prettier": "^2.8.8",
53+
"typescript": "4.2.4"
5454
},
5555
"eslintIgnore": [
5656
"!.*.js"

0 commit comments

Comments
 (0)