piclist 0.2.4 → 0.3.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/CHANGELOG.md +9 -0
- package/dist/core/Lifecycle.d.ts +3 -0
- package/dist/i18n/zh-CN.d.ts +2 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/types/index.d.ts +1 -0
- package/dist/utils/common.d.ts +4 -3
- package/package.json +145 -137
- package/assets/simhei.ttf +0 -0
- package/dist/assets/simhei.ttf +0 -0
package/CHANGELOG.md
CHANGED
package/dist/core/Lifecycle.d.ts
CHANGED
|
@@ -3,7 +3,10 @@ import { EventEmitter } from 'events';
|
|
|
3
3
|
import { IPicGo } from '../types';
|
|
4
4
|
export declare class Lifecycle extends EventEmitter {
|
|
5
5
|
private readonly ctx;
|
|
6
|
+
private readonly ttfLink;
|
|
7
|
+
ttfPath: string;
|
|
6
8
|
constructor(ctx: IPicGo);
|
|
9
|
+
downloadTTF(): Promise<boolean>;
|
|
7
10
|
start(input: any[]): Promise<IPicGo>;
|
|
8
11
|
private beforeTransform;
|
|
9
12
|
private doTransform;
|
package/dist/i18n/zh-CN.d.ts
CHANGED
|
@@ -127,6 +127,8 @@ export declare const ZH_CN: {
|
|
|
127
127
|
BUILDIN_COMPRESS_MESSAGE_ISROTATE: string;
|
|
128
128
|
BUILDIN_COMPRESS_ROTATEDEGREE: string;
|
|
129
129
|
BUILDIN_COMPRESS_MESSAGE_ROTATEDEGREE: string;
|
|
130
|
+
BUILDIN_COMPRESS_ISREMOVEEXIF: string;
|
|
131
|
+
BUILDIN_COMPRESS_MESSAGE_ISREMOVEEXIF: string;
|
|
130
132
|
PLUGIN_HANDLER_PLUGIN_INSTALL_SUCCESS: string;
|
|
131
133
|
PLUGIN_HANDLER_PLUGIN_INSTALL_FAILED: string;
|
|
132
134
|
PLUGIN_HANDLER_PLUGIN_INSTALL_FAILED_REASON: string;
|