Skip to content

Commit 763e7b2

Browse files
committed
Update Dependencies
Improve compatibility with higher versions of nodejs
1 parent 3822c6c commit 763e7b2

File tree

11 files changed

+1910
-2183
lines changed

11 files changed

+1910
-2183
lines changed

.github/workflows/master.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- master
7+
- master
88

99
jobs:
1010
main:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Set node version
16-
uses: actions/setup-node@v3
16+
uses: actions/setup-node@v4
1717
with:
18-
node-version: '18.x'
18+
node-version: '22.x'
1919

2020
- name: Install
2121
run: |
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Deploy to GitHub Pages
5151
if: success() && github.ref == 'refs/heads/master'
52-
uses: crazy-max/ghaction-github-pages@v3
52+
uses: crazy-max/ghaction-github-pages@v4
5353
with:
5454
target_branch: gh-pages
5555
build_dir: ./build/prod

babel.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = function(api) {
1111
],
1212
"plugins": [
1313
"dynamic-import-node",
14-
"@babel/plugin-syntax-import-assertions",
14+
["@babel/plugin-proposal-import-attributes-to-assertions", { "deprecatedAssertSyntax": true }],
1515
[
1616
"babel-plugin-transform-builtin-extend", {
1717
"globals": ["Error"]

0 commit comments

Comments
 (0)