@pdfvector/util 0.0.5 → 0.0.8

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.
@@ -1,7 +1,7 @@
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 instancePort = 34000;
4
+ export declare const instanceServerPort = 34000;
5
5
  export declare const productTitle = "PDF Vector";
6
6
  export interface ErrorService {
7
7
  captureError: (error: unknown) => void;
package/.tsc/lib/index.js CHANGED
@@ -54,7 +54,7 @@ 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 instancePort = 34000;
57
+ export const instanceServerPort = 34000;
58
58
  export const productTitle = "PDF Vector";
59
59
  export const errorService = {
60
60
  captureError: (error) => {
package/CHANGELOG.md ADDED
@@ -0,0 +1,65 @@
1
+ # @pdfvector/util
2
+
3
+ ## 0.0.8
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [#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
9
+
10
+ ## 0.0.7
11
+ ### Patch Changes
12
+
13
+
14
+
15
+ - [#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
16
+
17
+
18
+
19
+ - [#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.
20
+
21
+ ## 0.0.6
22
+ ### Patch Changes
23
+
24
+
25
+
26
+ - [#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
27
+
28
+ ## 0.0.5
29
+ ### Patch Changes
30
+
31
+
32
+
33
+ - [#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
34
+
35
+ ## 0.0.4
36
+ ### Patch Changes
37
+
38
+
39
+
40
+ - [#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
41
+
42
+ ## 0.0.3
43
+ ### Patch Changes
44
+
45
+
46
+
47
+ - [#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
48
+
49
+ ## 0.0.2
50
+ ### Patch Changes
51
+
52
+
53
+
54
+ - [#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
55
+
56
+ ## 0.0.1
57
+ ### Patch Changes
58
+
59
+
60
+
61
+ - [#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
62
+
63
+
64
+
65
+ - [#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.5",
3
+ "version": "0.0.8",
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
- "!.tsc/**/*.tsbuildinfo"
8
+ "CHANGELOG.md"
12
9
  ]
13
10
  }