mafit 1.0.9 → 1.1.1

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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +9 -8
package/README.md CHANGED
@@ -18,7 +18,8 @@ npm install -g mafit@latest
18
18
 
19
19
  ```bash
20
20
  mafit --help
21
- mafit login
21
+ mafit login
22
22
  mafit status
23
23
  mafit web
24
+ mafit restart
24
25
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mafit",
3
- "version": "1.0.9",
3
+ "version": "1.1.1",
4
4
  "description": "Mafit local agent CLI",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -15,15 +15,16 @@
15
15
  "README.md"
16
16
  ],
17
17
  "optionalDependencies": {
18
- "mafit-linux-x64": "1.0.9",
19
- "mafit-linux-arm64": "1.0.9",
20
- "mafit-darwin-x64": "1.0.9",
21
- "mafit-darwin-arm64": "1.0.9",
22
- "mafit-windows-x64": "1.0.9",
23
- "mafit-windows-arm64": "1.0.9"
18
+ "mafit-linux-x64": "1.1.1",
19
+ "mafit-linux-arm64": "1.1.1",
20
+ "mafit-darwin-x64": "1.1.1",
21
+ "mafit-darwin-arm64": "1.1.1",
22
+ "mafit-windows-x64": "1.1.1",
23
+ "mafit-windows-arm64": "1.1.1"
24
24
  },
25
25
  "scripts": {
26
26
  "build:binaries": "../scripts/build-npm-binaries.sh",
27
- "pack:check": "npm pack --dry-run"
27
+ "pack:check": "npm pack --dry-run",
28
+ "release:npm": "../scripts/release-npm.sh"
28
29
  }
29
30
  }