Skip to content

Commit 90a4c84

Browse files
committed
Merge branch 'develop'
2 parents 6adc77d + 805762b commit 90a4c84

40 files changed

+12399
-34684
lines changed

.github/workflows/blank.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
node-version: [ 14.x ]
23+
node-version: [ 18.x ]
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v4
2626
- name: Set Branch
2727
id: vars
2828
run: echo ::set-output name=short_ref::${GITHUB_REF#refs/*/}
2929
- name: Use Node.js ${{ matrix.node-version }}
30-
uses: actions/setup-node@v1
30+
uses: actions/setup-node@v4
3131
with:
3232
node-version: ${{ matrix.node-version }}
3333
registry-url: 'https://registry.npmjs.org'
3434

3535
- name: Cache CI node_modules
36-
uses: actions/cache@v2
36+
uses: actions/cache@v4
3737
env:
3838
cache-name: cache-node-modules
3939
with:
@@ -56,7 +56,7 @@ jobs:
5656
npm run build
5757
5858
- name: Send code coverage report to Codecov.io
59-
uses: codecov/codecov-action@v1
59+
uses: codecov/codecov-action@v4
6060
with:
6161
token: ${{ secrets.CODECOV_TOKEN }}
6262

babel.config.json

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,6 @@
44
"@babel/preset-typescript"
55
],
66
"plugins": [
7-
"@babel/plugin-proposal-private-methods",
8-
"@babel/plugin-syntax-dynamic-import",
9-
"@babel/plugin-transform-react-jsx",
10-
"@babel/plugin-transform-template-literals",
11-
"@babel/plugin-proposal-export-namespace-from",
12-
"@babel/plugin-proposal-export-default-from",
13-
"transform-es2015-template-literals",
14-
"@babel/plugin-proposal-optional-chaining",
15-
"@babel/plugin-proposal-nullish-coalescing-operator",
16-
"react-loadable/babel",
177
[
188
"babel-plugin-named-asset-import",
199
{
@@ -23,14 +13,7 @@
2313
}
2414
}
2515
}
26-
],
27-
[
28-
"@babel/plugin-proposal-object-rest-spread",
29-
{
30-
"useBuiltIns": true
31-
}
32-
],
33-
"@babel/plugin-proposal-class-properties"
16+
]
3417
],
3518
"env": {
3619
"cjs": {
@@ -53,7 +36,7 @@
5336
"@babel/preset-env",
5437
{
5538
"targets": {
56-
"node": "14"
39+
"node": "18"
5740
},
5841
"modules": false
5942
}
@@ -62,7 +45,7 @@
6245
"@babel/preset-typescript",
6346
{
6447
"targets": {
65-
"node": "14"
48+
"node": "18"
6649
},
6750
"modules": false
6851
}

0 commit comments

Comments
 (0)