@pdfvector/util 0.0.27 → 0.0.30

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +19 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @pdfvector/util
2
2
 
3
+ ## 0.0.30
4
+ ### Patch Changes
5
+
6
+
7
+
8
+ - [#344](https://github.com/phuctm97/pdfvector/pull/344) [`f73ad67`](https://github.com/phuctm97/pdfvector/commit/f73ad675d3d3a1c5f02faa209857e4db795fef40) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Move every application into the packages workspace, remove Turbo, simplify repository scripts, and enforce Biome, typechecking, and complete package coverage in validation.
9
+
10
+ ## 0.0.29
11
+ ### Patch Changes
12
+
13
+
14
+
15
+ - [#323](https://github.com/phuctm97/pdfvector/pull/323) [`52046a0`](https://github.com/phuctm97/pdfvector/commit/52046a0724307d9bc3397197def735c12d269b24) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Install required release runtimes, propagate publish profiles to artifact
16
+ verification, and republish the affected npm packages and applications.
17
+
18
+ ## 0.0.28
19
+ ### Patch Changes
20
+
21
+
22
+
23
+ - [#320](https://github.com/phuctm97/pdfvector/pull/320) [`4b725ca`](https://github.com/phuctm97/pdfvector/commit/4b725cabc187c74e2899735c2f0969c71696725e) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Publish compiled utility entrypoints with matching type declarations, and verify every npm artifact entrypoint before publishing.
24
+
3
25
  ## 0.0.27
4
26
  ### Patch Changes
5
27
 
package/package.json CHANGED
@@ -1,17 +1,30 @@
1
1
  {
2
2
  "name": "@pdfvector/util",
3
- "version": "0.0.27",
3
+ "version": "0.0.30",
4
4
  "type": "module",
5
- "main": ".tsc/lib/index.js",
5
+ "main": "./.tsc/lib/index.js",
6
6
  "exports": {
7
- ".": "./lib/index.ts",
8
- "./sentry-distribution": "./lib/sentry-distribution.ts",
9
- "./sentry-release": "./lib/sentry-release.ts",
10
- "./service-logger": "./lib/service-logger.ts"
7
+ ".": {
8
+ "types": "./.tsc/lib/index.d.ts",
9
+ "default": "./.tsc/lib/index.js"
10
+ },
11
+ "./sentry-distribution": {
12
+ "types": "./.tsc/lib/sentry-distribution.d.ts",
13
+ "default": "./.tsc/lib/sentry-distribution.js"
14
+ },
15
+ "./sentry-release": {
16
+ "types": "./.tsc/lib/sentry-release.d.ts",
17
+ "default": "./.tsc/lib/sentry-release.js"
18
+ },
19
+ "./service-logger": {
20
+ "types": "./.tsc/lib/service-logger.d.ts",
21
+ "default": "./.tsc/lib/service-logger.js"
22
+ }
11
23
  },
12
24
  "dependencies": {
13
25
  "@sentry/core": "^10.68.0"
14
26
  },
27
+ "types": "./.tsc/lib/index.d.ts",
15
28
  "files": [
16
29
  ".tsc",
17
30
  "CHANGELOG.md"