cmyr-template-cli 1.35.0 → 1.35.2

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": "cmyr-template-cli",
3
- "version": "1.35.0",
3
+ "version": "1.35.2",
4
4
  "description": "草梅友仁自制的项目模板创建器",
5
5
  "author": "CaoMeiYouRen",
6
6
  "license": "MIT",
@@ -158,13 +158,13 @@
158
158
 
159
159
  <% if (afdianUsername) { -%>
160
160
  <a href="https://afdian.com/@<%= afdianUsername %>">
161
- <img src="https://cdn.jsdelivr.net/gh/CaoMeiYouRen/image-hosting-01@master/images/202306192324870.png" width="312px" height="78px" alt="在爱发电支持我">
161
+ <img src="https://oss.cmyr.dev/images/202306192324870.png" width="312px" height="78px" alt="在爱发电支持我">
162
162
  </a>
163
163
  <% } -%>
164
164
 
165
165
  <% if (patreonUsername) { -%>
166
166
  <a href="https://patreon.com/<%= patreonUsername %>">
167
- <img src="https://cdn.jsdelivr.net/gh/CaoMeiYouRen/image-hosting-01@master/images/202306142054108.svg" width="312px" height="78px" alt="become a patreon"/>
167
+ <img src="https://oss.cmyr.dev/images/202306142054108.svg" width="312px" height="78px" alt="become a patreon"/>
168
168
  </a>
169
169
  <% } -%>
170
170
  <% } -%>
@@ -18,5 +18,6 @@ module.exports = {
18
18
  'subject-case': [0, 'never'],
19
19
  'body-max-line-length': [0, 'never'],
20
20
  'footer-max-line-length': [0, 'never'],
21
+ 'header-max-length': [2, 'always', 120],
21
22
  },
22
23
  }
@@ -1,35 +0,0 @@
1
- const { name } = require('./package.json')
2
- module.exports = {
3
- plugins: [
4
- [
5
- "@semantic-release/commit-analyzer",
6
- {
7
- "config": "conventional-changelog-cmyr-config"
8
- }
9
- ],
10
- [
11
- "@semantic-release/release-notes-generator",
12
- {
13
- "config": "conventional-changelog-cmyr-config"
14
- }
15
- ],
16
- [
17
- "@semantic-release/changelog",
18
- {
19
- "changelogFile": "CHANGELOG.md",
20
- "changelogTitle": "# " + name
21
- }
22
- ],
23
- '@semantic-release/npm',
24
- '@semantic-release/github',
25
- [
26
- "@semantic-release/git",
27
- {
28
- "assets": [
29
- "CHANGELOG.md",
30
- "package.json"
31
- ]
32
- }
33
- ]
34
- ]
35
- }
@@ -1,22 +0,0 @@
1
- module.exports = {
2
- extends: ['@commitlint/config-conventional'],
3
- rules: {
4
- 'type-enum': [2, 'always', [
5
- 'feat',
6
- 'fix',
7
- 'docs',
8
- 'style',
9
- 'refactor',
10
- 'perf',
11
- 'test',
12
- 'build',
13
- 'ci',
14
- 'chore',
15
- 'revert',
16
- ]],
17
- 'subject-full-stop': [0, 'never'],
18
- 'subject-case': [0, 'never'],
19
- 'body-max-line-length': [0, 'never'],
20
- 'footer-max-line-length': [0, 'never'],
21
- },
22
- }