piclist 0.5.1 → 0.5.3
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/CHANGELOG.md +38 -0
- package/README.md +3 -3
- package/dist/core/PicGo.d.ts +1 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/types/index.d.ts +5 -1
- package/package.json +5 -4
package/dist/types/index.d.ts
CHANGED
|
@@ -28,9 +28,13 @@ export interface IPicGo extends NodeJS.EventEmitter {
|
|
|
28
28
|
*/
|
|
29
29
|
output: IImgInfo[];
|
|
30
30
|
/**
|
|
31
|
-
* the
|
|
31
|
+
* the processed input
|
|
32
32
|
*/
|
|
33
33
|
input: any[];
|
|
34
|
+
/**
|
|
35
|
+
* the origin input
|
|
36
|
+
*/
|
|
37
|
+
rawInput: any[];
|
|
34
38
|
/**
|
|
35
39
|
* register\unregister\get picgo's plugin
|
|
36
40
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "piclist",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "Modified PicGo core, A tool for picture uploading",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Kuingsmile",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"dependencies": {
|
|
106
106
|
"@picgo/i18n": "^1.0.0",
|
|
107
107
|
"@picgo/store": "^2.0.4",
|
|
108
|
-
"axios": "^1.
|
|
108
|
+
"axios": "^1.4.0",
|
|
109
109
|
"chalk": "^2.4.1",
|
|
110
110
|
"commander": "^8.1.0",
|
|
111
111
|
"comment-json": "^2.3.1",
|
|
@@ -113,7 +113,8 @@
|
|
|
113
113
|
"dayjs": "^1.11.7",
|
|
114
114
|
"download-git-repo": "^3.0.2",
|
|
115
115
|
"ejs": "^2.6.1",
|
|
116
|
-
"
|
|
116
|
+
"form-data": "^4.0.0",
|
|
117
|
+
"fs-extra": "^11.1.1",
|
|
117
118
|
"globby": "^11.0.4",
|
|
118
119
|
"image-size": "^0.8.3",
|
|
119
120
|
"inquirer": "^6.0.0",
|
|
@@ -127,7 +128,7 @@
|
|
|
127
128
|
"qiniu": "^7.8.0",
|
|
128
129
|
"resolve": "^1.8.1",
|
|
129
130
|
"rimraf": "^3.0.2",
|
|
130
|
-
"sharp": "^0.
|
|
131
|
+
"sharp": "^0.32.1",
|
|
131
132
|
"text-to-svg": "^3.1.5",
|
|
132
133
|
"tunnel": "^0.0.6"
|
|
133
134
|
},
|