amae-cli 0.8.1 → 0.8.2

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 +1 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -39,6 +39,7 @@ Prebuilt native binaries ship for:
39
39
  ## Usage
40
40
 
41
41
  ```sh
42
+ amae --version # Show amae version
42
43
  amae install # Install all dependencies from package.json
43
44
  amae install --frozen-lockfile # Fail if lockfile is out of sync or missing (CI)
44
45
  amae install --production # Skip devDependencies (production builds)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amae-cli",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Ultra-fast package manager for JS/TS written in Rust",
5
5
  "bin": {
6
6
  "amae": "bin/amae"
@@ -13,9 +13,9 @@
13
13
  ],
14
14
  "license": "MIT",
15
15
  "optionalDependencies": {
16
- "amae-darwin-arm64": "0.8.1",
17
- "amae-darwin-x64": "0.8.1",
18
- "amae-linux-x64": "0.8.1",
19
- "amae-win32-x64": "0.8.1"
16
+ "amae-darwin-arm64": "0.8.2",
17
+ "amae-darwin-x64": "0.8.2",
18
+ "amae-linux-x64": "0.8.2",
19
+ "amae-win32-x64": "0.8.2"
20
20
  }
21
21
  }