piclist 1.9.1 → 1.9.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 +18 -0
- package/Dockerfile +15 -14
- package/dist/core/Lifecycle.d.ts +2 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## :tada: 1.9.3 (2024-08-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### :sparkles: Features
|
|
5
|
+
|
|
6
|
+
* **custom:** support picgo-server for piclist picbed ([3e91a9c](https://github.com/Kuingsmile/PicList-Core/commit/3e91a9c))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
## :tada: 1.9.2 (2024-08-12)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### :sparkles: Features
|
|
14
|
+
|
|
15
|
+
* **custom:** optimize windows clipboard script ([52b4612](https://github.com/Kuingsmile/PicList-Core/commit/52b4612))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
1
19
|
## :tada: 1.9.1 (2024-07-25)
|
|
2
20
|
|
|
3
21
|
|
package/Dockerfile
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
FROM node:lts-alpine
|
|
2
|
-
ENV TZ=Asia/Shanghai
|
|
3
|
-
RUN apk update \
|
|
4
|
-
&& apk add tzdata \
|
|
5
|
-
&& echo "${TZ}" > /etc/timezone \
|
|
6
|
-
&& ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime \
|
|
7
|
-
&& rm /var/cache/apk/*
|
|
8
|
-
RUN yarn config set network-timeout 300000 && \
|
|
9
|
-
#apk add g++ make py3-pip && \
|
|
10
|
-
#yarn global add node-gyp && \
|
|
11
|
-
yarn global add piclist && \
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
FROM node:lts-alpine
|
|
2
|
+
ENV TZ=Asia/Shanghai
|
|
3
|
+
RUN apk update \
|
|
4
|
+
&& apk add --no-cache tzdata \
|
|
5
|
+
&& echo "${TZ}" > /etc/timezone \
|
|
6
|
+
&& ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime \
|
|
7
|
+
&& rm /var/cache/apk/*
|
|
8
|
+
RUN yarn config set network-timeout 300000 && \
|
|
9
|
+
#apk add g++ make py3-pip && \
|
|
10
|
+
#yarn global add node-gyp && \
|
|
11
|
+
yarn global add piclist && \
|
|
12
|
+
yarn cache clean \
|
|
13
|
+
rm -rf /var/cache/apk/* /tmp/*
|
|
14
|
+
|
|
15
|
+
EXPOSE 36677
|
package/dist/core/Lifecycle.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ export declare class Lifecycle extends EventEmitter {
|
|
|
8
8
|
private downloadTTF;
|
|
9
9
|
private helpGetOption;
|
|
10
10
|
start(input: any[]): Promise<IPicGo>;
|
|
11
|
+
private preprocess;
|
|
12
|
+
private buildInRename;
|
|
11
13
|
private beforeTransform;
|
|
12
14
|
private doTransform;
|
|
13
15
|
private beforeUpload;
|