amae-cli 0.7.1 → 0.8.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.
- package/README.md +17 -10
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -39,16 +39,23 @@ Prebuilt native binaries ship for:
|
|
|
39
39
|
## Usage
|
|
40
40
|
|
|
41
41
|
```sh
|
|
42
|
-
amae install
|
|
43
|
-
amae
|
|
44
|
-
amae
|
|
45
|
-
amae
|
|
46
|
-
amae
|
|
47
|
-
amae
|
|
48
|
-
amae
|
|
49
|
-
amae
|
|
50
|
-
amae
|
|
51
|
-
amae
|
|
42
|
+
amae install # Install all dependencies from package.json
|
|
43
|
+
amae install --frozen-lockfile # Fail if lockfile is out of sync or missing (CI)
|
|
44
|
+
amae install --production # Skip devDependencies (production builds)
|
|
45
|
+
amae add axios # Add a package and install
|
|
46
|
+
amae add -D vitest # Add a dev dependency
|
|
47
|
+
amae remove axios # Remove a package and reinstall
|
|
48
|
+
amae update # Update all dependencies to their latest versions (semver)
|
|
49
|
+
amae update axios # Update a specific package and its transitives
|
|
50
|
+
amae outdated # List dependencies that are out of date
|
|
51
|
+
amae why axios # Traces and prints why a package is installed
|
|
52
|
+
amae completions zsh # Generate shell completion scripts (bash/zsh/fish...)
|
|
53
|
+
amae run build # Run a script from package.json
|
|
54
|
+
amae test # Run the "test" script
|
|
55
|
+
amae start # Run the "start" script
|
|
56
|
+
amae list # List installed packages with resolved versions
|
|
57
|
+
amae clean # Delete node_modules and lockfile
|
|
58
|
+
amae prune # Clear the global ~/.amae/store cache
|
|
52
59
|
```
|
|
53
60
|
|
|
54
61
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amae-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.1",
|
|
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.
|
|
17
|
-
"amae-darwin-x64": "0.
|
|
18
|
-
"amae-linux-x64": "0.
|
|
19
|
-
"amae-win32-x64": "0.
|
|
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"
|
|
20
20
|
}
|
|
21
21
|
}
|