glede-init 0.0.3 → 0.0.6
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
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# glede-server项目脚手架
|
|
2
|
+
|
|
3
|
+
用于便捷创建glede-server项目, 依赖bun@^1.2.10
|
|
4
|
+
|
|
5
|
+
## 使用
|
|
6
|
+
|
|
7
|
+
- 直接执行
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
bunx glede-init # Linux/MacOS
|
|
11
|
+
bun x glede-init # Windows
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
- 全局安装
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g glede-init
|
|
19
|
+
|
|
20
|
+
glede-init
|
|
21
|
+
```
|
package/package.json
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "glede-init",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
|
-
"glede-init": "./bin/cli.js"
|
|
6
|
+
"glede-init": "./bin/cli.js",
|
|
7
|
+
"glede-init.cmd": "./bin/cli.js"
|
|
7
8
|
},
|
|
8
9
|
"files": [
|
|
9
10
|
"bin",
|
|
11
|
+
"README.md",
|
|
10
12
|
"copy.js",
|
|
11
13
|
"templates"
|
|
12
14
|
],
|
|
File without changes
|
|
File without changes
|