@yivan-lab/pretty-please 1.5.1 → 1.5.4
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 +3 -3
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,16 +89,16 @@ npm i -g @yivan-lab/pretty-please
|
|
|
89
89
|
curl -fsSL https://raw.githubusercontent.com/IvanLark/pretty-please/main/install.sh | bash
|
|
90
90
|
|
|
91
91
|
# Linux / macOS(国内加速)
|
|
92
|
-
curl -fsSL https://gh-proxy.org/https://raw.githubusercontent.com/IvanLark/pretty-please/main/install.sh | bash
|
|
92
|
+
curl -fsSL https://gh-proxy.org/https://raw.githubusercontent.com/IvanLark/pretty-please/main/install.sh | PROXY=https://gh-proxy.org bash
|
|
93
93
|
|
|
94
94
|
# Windows PowerShell
|
|
95
95
|
irm https://raw.githubusercontent.com/IvanLark/pretty-please/main/install.ps1 | iex
|
|
96
96
|
|
|
97
97
|
# Windows PowerShell(国内加速)
|
|
98
|
-
irm https://gh-proxy.org/https://raw.githubusercontent.com/IvanLark/pretty-please/main/install.ps1 | iex
|
|
98
|
+
$env:PROXY="https://gh-proxy.org"; irm https://gh-proxy.org/https://raw.githubusercontent.com/IvanLark/pretty-please/main/install.ps1 | iex
|
|
99
99
|
```
|
|
100
100
|
|
|
101
|
-
支持平台:Linux (x64/arm64) / macOS (Intel/Apple Silicon) / Windows (x64
|
|
101
|
+
支持平台:Linux (x64/arm64) / macOS (Intel/Apple Silicon) / Windows (x64)
|
|
102
102
|
|
|
103
103
|
## 快速开始
|
|
104
104
|
|
package/dist/package.json
CHANGED