cmyr-template-cli 1.26.0 → 1.26.1

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
@@ -1503,7 +1503,7 @@ module.exports = function (plop) {
1503
1503
  name: 'description',
1504
1504
  message: '请输入项目简介',
1505
1505
  default: '',
1506
- filter: (e) => e.trim(),
1506
+ filter: (e) => lintMd(e.trim()),
1507
1507
  },
1508
1508
  {
1509
1509
  type: 'input',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cmyr-template-cli",
3
- "version": "1.26.0",
3
+ "version": "1.26.1",
4
4
  "description": "草梅友仁自制的项目模板创建器",
5
5
  "author": "CaoMeiYouRen",
6
6
  "license": "MIT",
@@ -47,7 +47,7 @@
47
47
  "@types/node": "^20.0.0",
48
48
  "@types/promise.any": "^2.0.0",
49
49
  "@typescript-eslint/eslint-plugin": "6.17.0",
50
- "@typescript-eslint/parser": "6.16.0",
50
+ "@typescript-eslint/parser": "6.17.0",
51
51
  "commitizen": "^4.2.2",
52
52
  "conventional-changelog-cli": "^4.0.0",
53
53
  "conventional-changelog-cmyr-config": "^2.1.1",
@@ -19,6 +19,7 @@ jobs:
19
19
  uses: actions/setup-node@v3
20
20
  with:
21
21
  node-version: "lts/*"
22
+ cache: "pnpm"
22
23
  - name: Cache Dependency
23
24
  uses: actions/cache@v3
24
25
  with:
@@ -14,9 +14,10 @@ jobs:
14
14
  with:
15
15
  version: "latest"
16
16
  - name: Setup Node.js@lts environment
17
- uses: actions/setup-node@v3
17
+ uses: actions/setup-node@v4
18
18
  with:
19
19
  node-version: "lts/*"
20
+ cache: "pnpm"
20
21
  - name: Cache Dependency
21
22
  uses: actions/cache@v3
22
23
  with: