@soybeanjs/cli 0.2.3 → 0.2.5
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/README.md +3 -3
- package/package.json +7 -9
package/README.md
CHANGED
|
@@ -35,10 +35,9 @@ pnpm soy -h
|
|
|
35
35
|
|
|
36
36
|
底层调用 prettier --write 达到格式化文件的目的
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
默认忽略的格式化文件夹货文件:
|
|
39
39
|
|
|
40
|
-
- js,jsx,mjs,cjs,json,ts,tsx,mts,cts,vue,svelte,astro
|
|
41
|
-
> 以上文件通过 eslint 去格式化
|
|
40
|
+
- js,jsx,mjs,cjs,json,ts,tsx,mts,cts,vue,svelte,astro (通过 eslint 去格式化)
|
|
42
41
|
- node_modules
|
|
43
42
|
- _.min._
|
|
44
43
|
- CHANGELOG.md
|
|
@@ -52,3 +51,4 @@ pnpm soy -h
|
|
|
52
51
|
- pnpm-lock.yaml
|
|
53
52
|
- yarn.lock
|
|
54
53
|
- **snapshots**
|
|
54
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@soybeanjs/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "SoybeanJS's command lint tools",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Soybean",
|
|
@@ -37,8 +37,7 @@
|
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@soybeanjs/cli": "link:",
|
|
39
39
|
"@types/node": "^20.2.3",
|
|
40
|
-
"bumpp": "9.1.0",
|
|
41
|
-
"conventional-changelog-cli": "^2.2.2",
|
|
40
|
+
"bumpp": "^9.1.0",
|
|
42
41
|
"eslint": "8.41.0",
|
|
43
42
|
"eslint-config-soybeanjs": "0.3.8",
|
|
44
43
|
"lint-staged": "13.2.2",
|
|
@@ -48,11 +47,11 @@
|
|
|
48
47
|
"typescript": "5.0.4"
|
|
49
48
|
},
|
|
50
49
|
"simple-git-hooks": {
|
|
51
|
-
"commit-msg": "pnpm
|
|
52
|
-
"pre-commit": "pnpm
|
|
50
|
+
"commit-msg": "pnpm soy git-commit-verify",
|
|
51
|
+
"pre-commit": "pnpm lint-staged"
|
|
53
52
|
},
|
|
54
53
|
"lint-staged": {
|
|
55
|
-
"*.{js,
|
|
54
|
+
"*.{js,json,ts}": [
|
|
56
55
|
"eslint . --fix"
|
|
57
56
|
]
|
|
58
57
|
},
|
|
@@ -63,9 +62,8 @@
|
|
|
63
62
|
"commit": "soy git-commit",
|
|
64
63
|
"cleanup": "soy cleanup",
|
|
65
64
|
"update-pkg": "soy update-pkg",
|
|
66
|
-
"update-version": "bumpp package.json
|
|
65
|
+
"update-version": "bumpp package.json",
|
|
67
66
|
"publish-pkg": "pnpm -r publish --access public",
|
|
68
|
-
"release": "pnpm update-version && pnpm publish-pkg"
|
|
69
|
-
"gen-log": "conventional-changelog -p angular -i CHANGELOG.md -s"
|
|
67
|
+
"release": "pnpm update-version && pnpm publish-pkg"
|
|
70
68
|
}
|
|
71
69
|
}
|