cmyr-template-cli 1.36.1 → 1.37.0
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/dist/plopfile.js
CHANGED
|
@@ -56,7 +56,6 @@ var REMOTES = [
|
|
|
56
56
|
"https://ghproxy.com/https://github.com",
|
|
57
57
|
"https://gh.ddlc.top/https://github.com",
|
|
58
58
|
"https://gh.flyinbug.top/gh/https://github.com",
|
|
59
|
-
"https://gh.con.sh/https://github.com",
|
|
60
59
|
"https://cors.isteed.cc/github.com",
|
|
61
60
|
"https://ghps.cc/https://github.com",
|
|
62
61
|
"https://download.nuaa.cf",
|
|
@@ -182,6 +181,15 @@ var TEMPLATES_META_LIST = [
|
|
|
182
181
|
// docker: false,
|
|
183
182
|
// priority: 0,
|
|
184
183
|
// },
|
|
184
|
+
{
|
|
185
|
+
name: "tauri-template",
|
|
186
|
+
language: "vue",
|
|
187
|
+
runtime: "browser",
|
|
188
|
+
vueVersion: 3,
|
|
189
|
+
docker: false,
|
|
190
|
+
priority: 0,
|
|
191
|
+
tags: ["tauri", "vite"]
|
|
192
|
+
},
|
|
185
193
|
{
|
|
186
194
|
name: "electron-vite-template",
|
|
187
195
|
language: "vue",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cmyr-template-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.37.0",
|
|
4
4
|
"description": "草梅友仁自制的项目模板创建器",
|
|
5
5
|
"author": "CaoMeiYouRen",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"@types/lodash": "^4.14.165",
|
|
43
43
|
"@types/node": "^22.0.0",
|
|
44
44
|
"@typescript-eslint/eslint-plugin": "7.18.0",
|
|
45
|
-
"@typescript-eslint/parser": "
|
|
45
|
+
"@typescript-eslint/parser": "8.24.0",
|
|
46
46
|
"commitizen": "^4.2.2",
|
|
47
47
|
"conventional-changelog-cli": "^5.0.0",
|
|
48
48
|
"conventional-changelog-cmyr-config": "^2.1.1",
|
package/templates/.editorconfig
CHANGED
|
@@ -3,10 +3,10 @@ on:
|
|
|
3
3
|
push:
|
|
4
4
|
branches:
|
|
5
5
|
- master
|
|
6
|
-
#
|
|
6
|
+
# 仅针对当前工作流正在进行的作业或运行
|
|
7
7
|
concurrency:
|
|
8
8
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
9
|
-
cancel-in-progress:
|
|
9
|
+
cancel-in-progress: false # Release 作业不取消,因为要确保版本发布成功
|
|
10
10
|
jobs:
|
|
11
11
|
release:
|
|
12
12
|
name: Release
|