create-geekron-website 0.1.3 → 0.1.4
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 +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ bash shell/build.sh
|
|
|
43
43
|
使用交互式发布脚本:
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
npm run
|
|
46
|
+
npm run release
|
|
47
47
|
# 或直接执行
|
|
48
48
|
bash shell/publish.sh
|
|
49
49
|
```
|
|
@@ -52,7 +52,7 @@ bash shell/publish.sh
|
|
|
52
52
|
1. 检查 npm 登录状态
|
|
53
53
|
2. 检查 Git 工作区状态
|
|
54
54
|
3. 可选更新版本号
|
|
55
|
-
4.
|
|
55
|
+
4. 自动构建项目(静默模式)
|
|
56
56
|
5. 发布到 npm
|
|
57
57
|
6. 可选创建 Git tag
|
|
58
58
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-geekron-website",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "CLI tool to create Geekron websites",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Geekron",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"scripts": {
|
|
21
21
|
"dev": "bun run src/index.ts",
|
|
22
22
|
"build": "bash shell/build.sh",
|
|
23
|
-
"
|
|
23
|
+
"release": "bash shell/publish.sh",
|
|
24
24
|
"prepublishOnly": "bash shell/build.sh"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|