@pdfvector/util 0.0.26 → 0.0.29
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 +22 -0
- package/package.json +20 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @pdfvector/util
|
|
2
2
|
|
|
3
|
+
## 0.0.29
|
|
4
|
+
### Patch Changes
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
- [#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
|
|
9
|
+
verification, and republish the affected npm packages and applications.
|
|
10
|
+
|
|
11
|
+
## 0.0.28
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
- [#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.
|
|
17
|
+
|
|
18
|
+
## 0.0.27
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
- [#317](https://github.com/phuctm97/pdfvector/pull/317) [`cb1f2ec`](https://github.com/phuctm97/pdfvector/commit/cb1f2ec3296c6428f5d12fa69789a269b3418182) Thanks [@khanhduyvt0101](https://github.com/khanhduyvt0101)! - Upgrade dependencies across every app and package to their latest compatible releases.
|
|
24
|
+
|
|
3
25
|
## 0.0.26
|
|
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.
|
|
3
|
+
"version": "0.0.29",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"main": "
|
|
5
|
+
"main": "./.tsc/lib/index.js",
|
|
6
6
|
"exports": {
|
|
7
|
-
".":
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
"@sentry/core": "^10.
|
|
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"
|