amae-cli 0.8.3 → 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.
- package/README.md +4 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -112,11 +112,14 @@ The lockfile (`amae-lock.bin`) captures the full resolved graph. On subsequent i
|
|
|
112
112
|
|
|
113
113
|
## .npmrc
|
|
114
114
|
|
|
115
|
-
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:
|
|
116
116
|
|
|
117
117
|
```ini
|
|
118
118
|
registry=https://registry.npmjs.org/
|
|
119
119
|
//registry.npmjs.org/:_authToken=your_token_here
|
|
120
|
+
|
|
121
|
+
# Scoped registry for @mycompany packages
|
|
122
|
+
@mycompany:registry=https://npm.mycompany.com/
|
|
120
123
|
```
|
|
121
124
|
|
|
122
125
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amae-cli",
|
|
3
|
-
"version": "0.
|
|
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.
|
|
17
|
-
"amae-darwin-x64": "0.
|
|
18
|
-
"amae-linux-x64": "0.
|
|
19
|
-
"amae-win32-x64": "0.
|
|
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
|
}
|