@duonghieu0712z/create-tauri-vue-template 0.0.22 → 0.0.23
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
|
@@ -70,7 +70,7 @@ jobs:
|
|
|
70
70
|
RUBY
|
|
71
71
|
|
|
72
72
|
build:
|
|
73
|
-
name: Build release (${{ matrix.
|
|
73
|
+
name: Build release (${{ matrix.label }})
|
|
74
74
|
needs: changelog
|
|
75
75
|
permissions:
|
|
76
76
|
contents: write
|
|
@@ -81,12 +81,16 @@ jobs:
|
|
|
81
81
|
matrix:
|
|
82
82
|
include:
|
|
83
83
|
- os: macos-latest
|
|
84
|
+
label: macos-aarch64
|
|
84
85
|
args: --target aarch64-apple-darwin
|
|
85
86
|
- os: macos-latest
|
|
87
|
+
label: macos-x86_64
|
|
86
88
|
args: --target x86_64-apple-darwin
|
|
87
89
|
- os: ubuntu-latest
|
|
90
|
+
label: ubuntu
|
|
88
91
|
args: ''
|
|
89
92
|
- os: windows-latest
|
|
93
|
+
label: windows
|
|
90
94
|
args: ''
|
|
91
95
|
|
|
92
96
|
steps:
|
|
@@ -129,7 +133,7 @@ jobs:
|
|
|
129
133
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
130
134
|
with:
|
|
131
135
|
tagName: v__VERSION__
|
|
132
|
-
releaseName:
|
|
136
|
+
releaseName: v__VERSION__
|
|
133
137
|
releaseBody: ${{ needs.changelog.outputs.body }}
|
|
134
138
|
releaseDraft: true
|
|
135
139
|
prerelease: false
|
package/template/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## Setup
|
|
4
4
|
|
|
5
|
-
Install Node.js, pnpm, Rust, and the Tauri system dependencies for your operating system. This project requires Node.js
|
|
5
|
+
Install Node.js, pnpm, Rust, and the Tauri system dependencies for your operating system. This project requires Node.js `>=22.12.0`.
|
|
6
6
|
|
|
7
7
|
On Ubuntu/Debian, install the Tauri Linux dependencies:
|
|
8
8
|
|
package/template/package.json
CHANGED