piclist 0.0.4 → 0.0.5
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 +8 -3
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,12 @@
|
|
|
11
11
|
|
|
12
12
|
A tool for picture uploading. Both CLI & api supports. It also supports plugin system, please check [Awesome-PicGo](https://github.com/PicGo/Awesome-PicGo) to find powerful plugins.
|
|
13
13
|
|
|
14
|
-
**Typora supports PicGo-Core natively**.
|
|
14
|
+
**Typora supports PicGo-Core natively**.
|
|
15
|
+
|
|
16
|
+
## 修改列表
|
|
17
|
+
|
|
18
|
+
* smms图床的返回参数增加了图片hash,用于删除图片
|
|
19
|
+
* imgur图床的返回参数增加了图片hash,用于删除图片
|
|
15
20
|
|
|
16
21
|
## Installation
|
|
17
22
|
|
|
@@ -90,13 +95,13 @@ Thanks to [vs-picgo](https://github.com/Spades-S/vs-picgo) && [Spades-S](https:/
|
|
|
90
95
|
#### Common JS
|
|
91
96
|
|
|
92
97
|
```js
|
|
93
|
-
const { PicGo } = require('
|
|
98
|
+
const { PicGo } = require('piclist')
|
|
94
99
|
```
|
|
95
100
|
|
|
96
101
|
#### ES Module
|
|
97
102
|
|
|
98
103
|
```js
|
|
99
|
-
import { PicGo } from '
|
|
104
|
+
import { PicGo } from 'piclist'
|
|
100
105
|
```
|
|
101
106
|
|
|
102
107
|
#### API usage example
|