Skip to content

Commit a8fbbee

Browse files
committed
update packer; reduce babel; v bumps;
1 parent 9326436 commit a8fbbee

17 files changed

+15786
-13380
lines changed

.github/workflows/blank.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,21 @@ 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/*/}
29+
2930
- name: Use Node.js ${{ matrix.node-version }}
30-
uses: actions/setup-node@v1
31+
uses: actions/setup-node@v4
3132
with:
3233
node-version: ${{ matrix.node-version }}
3334
registry-url: 'https://registry.npmjs.org'
3435

3536
- name: Cache CI node_modules
36-
uses: actions/cache@v2
37+
uses: actions/cache@v4
3738
env:
3839
cache-name: cache-node-modules
3940
with:
@@ -56,7 +57,7 @@ jobs:
5657
npm run build
5758
5859
- name: Send code coverage report to Codecov.io
59-
uses: codecov/codecov-action@v1
60+
uses: codecov/codecov-action@v4
6061
with:
6162
token: ${{ secrets.CODECOV_TOKEN }}
6263

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 bemit UG (haftungsbeschränkt)
3+
Copyright (c) 2024 bemit UG (haftungsbeschränkt)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ See [CONTRIBUTING.md](CONTRIBUTING.md).
4747

4848
This project is free software distributed under the **[MIT LICENSE](LICENSE)**.
4949

50-
© 2022 bemit UG (haftungsbeschränkt)
50+
© 2024 bemit UG (haftungsbeschränkt)

babel.config.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,10 @@
44
"@babel/preset-typescript"
55
],
66
"plugins": [
7-
"@babel/plugin-proposal-private-methods",
87
"@babel/plugin-syntax-dynamic-import",
9-
"@babel/plugin-transform-react-jsx",
108
"@babel/plugin-transform-template-literals",
119
"@babel/plugin-proposal-export-namespace-from",
1210
"@babel/plugin-proposal-export-default-from",
13-
"transform-es2015-template-literals",
1411
"@babel/plugin-proposal-optional-chaining",
1512
"@babel/plugin-proposal-nullish-coalescing-operator",
1613
[
@@ -52,7 +49,7 @@
5249
"@babel/preset-env",
5350
{
5451
"targets": {
55-
"node": "14"
52+
"node": "18"
5653
},
5754
"modules": false
5855
}
@@ -61,7 +58,7 @@
6158
"@babel/preset-typescript",
6259
{
6360
"targets": {
64-
"node": "14"
61+
"node": "18"
6562
},
6663
"modules": false
6764
}

package-lock.json

+14,385-11,923
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,18 @@
3737
"@types/react": "^17.0",
3838
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
3939
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
40-
"@types/testing-library__jest-dom": "^5.14.0",
4140
"assert": "^2.0.0",
4241
"cross-env": "^6.0.3",
4342
"eslint-plugin-jsx-a11y": "^6.5.1",
4443
"eslint-plugin-react-hooks": "^4.3.0",
4544
"lerna": "^3.22.1",
46-
"lerna-packer": "0.6.3",
45+
"lerna-packer": "0.8.2",
4746
"merge-dirs": "^0.2.1",
4847
"process": "^0.11.10",
4948
"symlink-dir": "^3.1.1",
5049
"sloc": "^0.2.1",
51-
"typescript": "^4.5.3",
52-
"ts-node": "^10.7.0"
50+
"typescript": "~5.1.6",
51+
"ts-node": "^10.9.2"
5352
},
5453
"jest-runner-eslint": {
5554
"cliOptions": {

0 commit comments

Comments
 (0)