@pdfvector/util 0.0.5 → 0.0.9
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/.tsc/lib/index.d.ts +2 -1
- package/.tsc/lib/index.js +2 -1
- package/CHANGELOG.md +72 -0
- package/package.json +2 -5
package/.tsc/lib/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
export declare const isCI: boolean;
|
|
2
2
|
export declare const isLocal: boolean;
|
|
3
3
|
export declare const isLive: boolean;
|
|
4
|
-
export declare const
|
|
4
|
+
export declare const instanceServerPort = 34000;
|
|
5
|
+
export declare const gatewayServerPort = 35000;
|
|
5
6
|
export declare const productTitle = "PDF Vector";
|
|
6
7
|
export interface ErrorService {
|
|
7
8
|
captureError: (error: unknown) => void;
|
package/.tsc/lib/index.js
CHANGED
|
@@ -54,7 +54,8 @@ const envLocal = getLocalWithBun() ??
|
|
|
54
54
|
export const isCI = envCI === "1" || envCI === "true";
|
|
55
55
|
export const isLocal = envLocal === "1" || envLocal === "true";
|
|
56
56
|
export const isLive = !isLocal;
|
|
57
|
-
export const
|
|
57
|
+
export const instanceServerPort = 34000;
|
|
58
|
+
export const gatewayServerPort = 35000;
|
|
58
59
|
export const productTitle = "PDF Vector";
|
|
59
60
|
export const errorService = {
|
|
60
61
|
captureError: (error) => {
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# @pdfvector/util
|
|
2
|
+
|
|
3
|
+
## 0.0.9
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
- [#61](https://github.com/phuctm97/pdfvector/pull/61) [`4c159a6`](https://github.com/phuctm97/pdfvector/commit/4c159a69694cf484e23d1bd611f1446dd0289bc0) Thanks [@phuctm97](https://github.com/phuctm97)! - Add gateway packages (contract, client, server) with a sample greeting endpoint
|
|
9
|
+
|
|
10
|
+
## 0.0.8
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
- [#54](https://github.com/phuctm97/pdfvector/pull/54) [`6c00753`](https://github.com/phuctm97/pdfvector/commit/6c0075399cd90d42c38017bc5dbcd8df142fefbd) Thanks [@phuctm97](https://github.com/phuctm97)! - Re-release all packages
|
|
16
|
+
|
|
17
|
+
## 0.0.7
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
- [#52](https://github.com/phuctm97/pdfvector/pull/52) [`fb83b42`](https://github.com/phuctm97/pdfvector/commit/fb83b42ca2ed186d3e5822677b945db100ec7877) Thanks [@phuctm97](https://github.com/phuctm97)! - Transpile with Bun instead of Node.js
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
- [#51](https://github.com/phuctm97/pdfvector/pull/51) [`02e4d4f`](https://github.com/phuctm97/pdfvector/commit/02e4d4f8b08cd2dc86f588c1520bbb95a0e1c5ed) Thanks [@phuctm97](https://github.com/phuctm97)! - Rename all instance stuff to instance-contract, instance-server, instance-client, etc.
|
|
27
|
+
|
|
28
|
+
## 0.0.6
|
|
29
|
+
### Patch Changes
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
- [#48](https://github.com/phuctm97/pdfvector/pull/48) [`50de78b`](https://github.com/phuctm97/pdfvector/commit/50de78bf39eabc2edd8d3f1288d1d7a44e5d6a75) Thanks [@phuctm97](https://github.com/phuctm97)! - Use tsc-alias to remove alias before publishing
|
|
34
|
+
|
|
35
|
+
## 0.0.5
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
- [#45](https://github.com/phuctm97/pdfvector/pull/45) [`0590cad`](https://github.com/phuctm97/pdfvector/commit/0590cad8830f719a0161d3f4128532c170d4427d) Thanks [@phuctm97](https://github.com/phuctm97)! - Publish to NPM
|
|
41
|
+
|
|
42
|
+
## 0.0.4
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
- [#24](https://github.com/phuctm97/pdfvector/pull/24) [`d8a4ef0`](https://github.com/phuctm97/pdfvector/commit/d8a4ef0f665290fdde6fb769e5dcb54bcd6d0f33) Thanks [@phuctm97](https://github.com/phuctm97)! - Improve branding stuff
|
|
48
|
+
|
|
49
|
+
## 0.0.3
|
|
50
|
+
### Patch Changes
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
- [#13](https://github.com/phuctm97/pdfvector/pull/13) [`808f9d5`](https://github.com/phuctm97/pdfvector/commit/808f9d59d35c9dd7ec8589130d0f6cf133d7d9f0) Thanks [@phuctm97](https://github.com/phuctm97)! - Refactor dev scripts
|
|
55
|
+
|
|
56
|
+
## 0.0.2
|
|
57
|
+
### Patch Changes
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
- [#6](https://github.com/phuctm97/pdfvector/pull/6) [`99c3cd8`](https://github.com/phuctm97/pdfvector/commit/99c3cd8e85cb28f4c6604ae554a26aaa852dc745) Thanks [@phuctm97](https://github.com/phuctm97)! - Create Git tags for future releases
|
|
62
|
+
|
|
63
|
+
## 0.0.1
|
|
64
|
+
### Patch Changes
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
- [#2](https://github.com/phuctm97/pdfvector/pull/2) [`dee483e`](https://github.com/phuctm97/pdfvector/commit/dee483e4b8f02fdb75321bea32781284cf7e44d5) Thanks [@phuctm97](https://github.com/phuctm97)! - Use oRPC directly
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
- [#3](https://github.com/phuctm97/pdfvector/pull/3) [`f04ed28`](https://github.com/phuctm97/pdfvector/commit/f04ed286e15142ed2cfc326834e122bec08ac4f5) Thanks [@phuctm97](https://github.com/phuctm97)! - Add product title
|
package/package.json
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pdfvector/util",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": ".tsc/lib/index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"transpile": "tsc --build --emitDeclarationOnly false"
|
|
8
|
-
},
|
|
9
6
|
"files": [
|
|
10
7
|
".tsc",
|
|
11
|
-
"
|
|
8
|
+
"CHANGELOG.md"
|
|
12
9
|
]
|
|
13
10
|
}
|