Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
elbakerino committed Oct 26, 2024
2 parents 6adc77d + 805762b commit 90a4c84
Show file tree
Hide file tree
Showing 40 changed files with 12,399 additions and 34,684 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x ]
node-version: [ 18.x ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set Branch
id: vars
run: echo ::set-output name=short_ref::${GITHUB_REF#refs/*/}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'

- name: Cache CI node_modules
uses: actions/cache@v2
uses: actions/cache@v4
env:
cache-name: cache-node-modules
with:
Expand All @@ -56,7 +56,7 @@ jobs:
npm run build
- name: Send code coverage report to Codecov.io
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}

Expand Down
23 changes: 3 additions & 20 deletions babel.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,6 @@
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-proposal-private-methods",
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-transform-react-jsx",
"@babel/plugin-transform-template-literals",
"@babel/plugin-proposal-export-namespace-from",
"@babel/plugin-proposal-export-default-from",
"transform-es2015-template-literals",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator",
"react-loadable/babel",
[
"babel-plugin-named-asset-import",
{
Expand All @@ -23,14 +13,7 @@
}
}
}
],
[
"@babel/plugin-proposal-object-rest-spread",
{
"useBuiltIns": true
}
],
"@babel/plugin-proposal-class-properties"
]
],
"env": {
"cjs": {
Expand All @@ -53,7 +36,7 @@
"@babel/preset-env",
{
"targets": {
"node": "14"
"node": "18"
},
"modules": false
}
Expand All @@ -62,7 +45,7 @@
"@babel/preset-typescript",
{
"targets": {
"node": "14"
"node": "18"
},
"modules": false
}
Expand Down
Loading

0 comments on commit 90a4c84

Please sign in to comment.