@jeffchi/logger 2.4.0-rc.0 → 2.5.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/README.md +1 -2
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -155,8 +155,7 @@ export interface ILogOptions {
|
|
|
155
155
|
|
|
156
156
|
> ### `version` 与 `release`的区别:
|
|
157
157
|
>
|
|
158
|
-
> `version
|
|
159
|
-
> `release`打标生成新的版本号,同步远程仓库,并且会执行最后的发布流程
|
|
158
|
+
> `version`只打标生成新的版本号,同步远程仓库,并不会执行最后的发布流程<br> > `release`打标生成新的版本号,同步远程仓库,并且会执行最后的发布流程
|
|
160
159
|
|
|
161
160
|
## License
|
|
162
161
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jeffchi/logger",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"main": "lib/index.cjs",
|
|
5
5
|
"module": "lib/index.mjs",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -44,6 +44,8 @@
|
|
|
44
44
|
"postrelease": "git push --follow-tags && npm publish",
|
|
45
45
|
"release:alpha": "standard-version --prerelease alpha --release-as",
|
|
46
46
|
"postrelease:alpha": "git push --follow-tags && npm publish --tag alpha",
|
|
47
|
+
"release:beta": "standard-version --prerelease beta --release-as",
|
|
48
|
+
"postrelease:beta": "git push --follow-tags && npm publish --tag beta",
|
|
47
49
|
"release:rc": "standard-version --prerelease rc --release-as",
|
|
48
50
|
"postrelease:rc": "git push --follow-tags && npm publish --tag rc"
|
|
49
51
|
},
|