piclist 0.2.0 → 0.2.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 +10 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,6 +29,16 @@ Based on Picgo-Core and add some features.
|
|
|
29
29
|
|
|
30
30
|
PicList should be installed with node.js >= 12 (v1.5.0-alpha.4 and small) & node.js >= 16 (since v1.5.0-alpha.5).
|
|
31
31
|
|
|
32
|
+
### before install
|
|
33
|
+
|
|
34
|
+
As PicList depends on [sharp](https://sharp.pixelplumbing.com/), you need to install sharp before install PicList.
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
npm config set sharp_binary_host "https://npmmirror.com/mirrors/sharp"
|
|
38
|
+
npm config set sharp_libvips_binary_host "https://npmmirror.com/mirrors/sharp-libvips"
|
|
39
|
+
npm install sharp
|
|
40
|
+
```
|
|
41
|
+
|
|
32
42
|
### Global install
|
|
33
43
|
|
|
34
44
|
```bash
|