@duonghieu0712z/create-tauri-vue-template 0.0.12 → 0.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duonghieu0712z/create-tauri-vue-template",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "Create a Tauri 2 + Vue 3 desktop app from the tauri-vue-template starter.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -7,12 +7,9 @@ on:
7
7
  - main
8
8
 
9
9
  permissions:
10
+ checks: write
10
11
  contents: read
11
12
 
12
- env:
13
- NODE_VERSION: '24'
14
- PNPM_VERSION: '11'
15
-
16
13
  jobs:
17
14
  frontend:
18
15
  runs-on: ubuntu-latest
@@ -42,7 +39,14 @@ jobs:
42
39
  run: pnpm lint:github:oxlint
43
40
 
44
41
  - name: Check ESLint
45
- run: pnpm lint:github:eslint
42
+ uses: reviewdog/action-eslint@v1
43
+ with:
44
+ github_token: ${{ secrets.GITHUB_TOKEN }}
45
+ reporter: ${{ github.event_name == 'pull_request' && 'github-pr-check' || 'github-check' }}
46
+ filter_mode: ${{ github.event_name == 'pull_request' && 'added' || 'nofilter' }}
47
+ fail_level: error
48
+ workdir: .
49
+ eslint_flags: '. --cache'
46
50
 
47
51
  - name: Check types
48
52
  run: pnpm type-check
@@ -18,7 +18,6 @@
18
18
  "lint:check:oxlint": "oxlint .",
19
19
  "lint:check:eslint": "eslint . --cache",
20
20
  "lint:github:oxlint": "oxlint --format github .",
21
- "lint:github:eslint": "eslint . --cache --format github",
22
21
  "lint:fix:oxlint": "oxlint --fix .",
23
22
  "lint:fix:eslint": "eslint --fix . --cache",
24
23
  "format": "oxfmt --check .",
@@ -44,7 +43,6 @@
44
43
  "@vue/eslint-config-typescript": "^14.7.0",
45
44
  "@vue/tsconfig": "^0.9.1",
46
45
  "eslint": "^10.4.0",
47
- "eslint-formatter-github": "^1.1.4",
48
46
  "eslint-plugin-oxlint": "^1.66.0",
49
47
  "eslint-plugin-vue": "^10.9.1",
50
48
  "husky": "^9.1.7",