mafit 1.2.1 → 1.2.3
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 +25 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -16,10 +16,32 @@ npm install -g mafit@latest
|
|
|
16
16
|
|
|
17
17
|
## Usage
|
|
18
18
|
|
|
19
|
+
### Quick start
|
|
19
20
|
```bash
|
|
20
21
|
mafit --help
|
|
21
|
-
mafit login
|
|
22
|
-
mafit
|
|
23
|
-
mafit
|
|
22
|
+
mafit login Sign in to your Mafit account
|
|
23
|
+
mafit web Open the local web dashboard
|
|
24
|
+
mafit status Check daemon and account status
|
|
25
|
+
mafit restart Restart the daemon and web dashboard
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Update later
|
|
29
|
+
```bash
|
|
30
|
+
npm install -g mafit@latest
|
|
31
|
+
mafit restart
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### 快速开始
|
|
35
|
+
```bash
|
|
36
|
+
mafit -h 显示支持的子命令
|
|
37
|
+
mafit login 登录你的 Mafit 账号
|
|
38
|
+
mafit web 打开本地网页版
|
|
39
|
+
mafit status 查看守护进程和账号状态
|
|
40
|
+
mafit restart 重启守护进程和本地网页
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### 后续更新
|
|
44
|
+
```bash
|
|
45
|
+
npm install -g mafit@latest
|
|
24
46
|
mafit restart
|
|
25
47
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mafit",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.3",
|
|
4
4
|
"description": "Mafit local agent CLI",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"README.md"
|
|
17
17
|
],
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"mafit-linux-x64": "1.2.
|
|
20
|
-
"mafit-linux-arm64": "1.2.
|
|
21
|
-
"mafit-darwin-x64": "1.2.
|
|
22
|
-
"mafit-darwin-arm64": "1.2.
|
|
23
|
-
"mafit-windows-x64": "1.2.
|
|
24
|
-
"mafit-windows-arm64": "1.2.
|
|
19
|
+
"mafit-linux-x64": "1.2.3",
|
|
20
|
+
"mafit-linux-arm64": "1.2.3",
|
|
21
|
+
"mafit-darwin-x64": "1.2.3",
|
|
22
|
+
"mafit-darwin-arm64": "1.2.3",
|
|
23
|
+
"mafit-windows-x64": "1.2.3",
|
|
24
|
+
"mafit-windows-arm64": "1.2.3"
|
|
25
25
|
},
|
|
26
26
|
"scripts": {
|
|
27
27
|
"build:binaries": "../scripts/build-npm-binaries.sh",
|