amae-cli 0.8.2 → 0.9.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 +5 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -43,6 +43,7 @@ amae --version # Show amae version
43
43
  amae install # Install all dependencies from package.json
44
44
  amae install --frozen-lockfile # Fail if lockfile is out of sync or missing (CI)
45
45
  amae install --production # Skip devDependencies (production builds)
46
+ amae install --store-dir=./cache # Use a custom local store instead of ~/.amae/store
46
47
  amae add axios # Add a package and install
47
48
  amae add -D vitest # Add a dev dependency
48
49
  amae remove axios # Remove a package and reinstall
@@ -111,11 +112,14 @@ The lockfile (`amae-lock.bin`) captures the full resolved graph. On subsequent i
111
112
 
112
113
  ## .npmrc
113
114
 
114
- amae reads both local `.npmrc` and `~/.npmrc`. Private registries and auth tokens work out of the box:
115
+ amae reads both local `.npmrc` and `~/.npmrc`. Private registries, scoped registries, and auth tokens work out of the box:
115
116
 
116
117
  ```ini
117
118
  registry=https://registry.npmjs.org/
118
119
  //registry.npmjs.org/:_authToken=your_token_here
120
+
121
+ # Scoped registry for @mycompany packages
122
+ @mycompany:registry=https://npm.mycompany.com/
119
123
  ```
120
124
 
121
125
  ---
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "amae-cli",
3
- "version": "0.8.2",
3
+ "version": "0.9.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.8.2",
17
- "amae-darwin-x64": "0.8.2",
18
- "amae-linux-x64": "0.8.2",
19
- "amae-win32-x64": "0.8.2"
16
+ "amae-darwin-arm64": "0.9.1",
17
+ "amae-darwin-x64": "0.9.1",
18
+ "amae-linux-x64": "0.9.1",
19
+ "amae-win32-x64": "0.9.1"
20
20
  }
21
21
  }