Skip to content

Commit 0d60ba7

Browse files
authored
Merge pull request #157 from CodeDead/feature/upgrades
feat: fixed graphemer error, dependency upgrades, yarn Upgrade
2 parents 08a19a7 + 12fd568 commit 0d60ba7

19 files changed

Lines changed: 731 additions & 941 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
runs-on: ${{ matrix.platform }}
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131

3232
- name: install dependencies (ubuntu only)
3333
if: startsWith(matrix.platform, 'ubuntu-22.04')

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test-eslint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Install modules
1818
run: yarn
1919

@@ -41,7 +41,7 @@ jobs:
4141

4242
runs-on: ${{ matrix.platform }}
4343
steps:
44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545

4646
- name: install dependencies (ubuntu only)
4747
if: startsWith(matrix.platform, 'ubuntu-22.04')

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@ yarn-error.log*
2525
/.yarn/install-state.gz
2626
/.yarn/cache/
2727
.idea/*
28+
/.eslintcache
Lines changed: 288 additions & 288 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-4.13.0.cjs
3+
yarnPath: .yarn/releases/yarn-4.14.1.cjs

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
"@mui/icons-material": "^9.0.0",
1111
"@mui/material": "^9.0.0",
1212
"@mui/system": "^9.0.0",
13-
"@mui/x-data-grid": "^9.0.1",
14-
"@shopify/react-web-worker": "^5.1.6",
13+
"@mui/x-data-grid": "^9.0.2",
1514
"@tauri-apps/api": "^2.10.1",
1615
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
1716
"@tauri-apps/plugin-dialog": "^2.7.0",
@@ -20,11 +19,12 @@
2019
"graphemer": "^1.4.0",
2120
"react": "^19.2.5",
2221
"react-dom": "^19.2.5",
23-
"react-router-dom": "^7.14.0"
22+
"react-router-dom": "^7.14.2"
2423
},
2524
"scripts": {
26-
"start": "vite",
25+
"dev": "vite",
2726
"build": "vite build",
27+
"tbuild": "tauri build",
2828
"preview": "vite build && vite preview",
2929
"tdev": "tauri dev",
3030
"lint": "eslint .",
@@ -41,16 +41,16 @@
4141
"@nabla/vite-plugin-eslint": "^3.0.1",
4242
"@tauri-apps/cli": "^2.10.1",
4343
"@vitejs/plugin-react": "^6.0.1",
44-
"eslint": "^10.2.0",
44+
"eslint": "^10.2.1",
4545
"eslint-config-react-app": "^7.0.1",
4646
"eslint-plugin-import-x": "^4.16.2",
4747
"eslint-plugin-react": "^7.37.5",
48-
"eslint-plugin-react-hooks": "^7.0.1",
48+
"eslint-plugin-react-hooks": "^7.1.1",
4949
"eslint-plugin-react-refresh": "^0.5.2",
5050
"globals": "^17.5.0",
51-
"prettier": "^3.8.2",
52-
"vite": "^8.0.8",
51+
"prettier": "^3.8.3",
52+
"vite": "^8.0.10",
5353
"vite-plugin-svgr": "^5.2.0"
5454
},
55-
"packageManager": "yarn@4.13.0"
55+
"packageManager": "yarn@4.14.1"
5656
}

0 commit comments

Comments
 (0)