@splendidlabz/third-party 1.5.1 → 1.5.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 +17 -0
- package/package.json +6 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @splendidlabz/third-party
|
|
2
2
|
|
|
3
|
+
## 1.5.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- aece0fb: `http-errors` and `vitest` are no longer dependencies. `http-errors` belongs to `@splendidlabz/tracking`, and `vitest` is a test runner that was shipping to every consumer — it is now a devDependency. Neither is imported by shipped code, so this package works exactly as before and installs get smaller. If your own code imports either directly, declare it in your own `package.json`.
|
|
8
|
+
|
|
9
|
+
Add the missing `dotenv` dependency. `lib/buttondown.js` imports `dotenv/config`, but `dotenv` was never declared and was not installed at all, so importing `@splendidlabz/third-party/buttondown` failed outright.
|
|
10
|
+
|
|
11
|
+
Remove the dead `main` field. This package is subpath-only and exposes no root export, so `main` pointed at a file that does not exist and `exports` already took precedence.
|
|
12
|
+
|
|
13
|
+
## 1.5.2
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [34fc1c5]
|
|
18
|
+
- @splendidlabz/utils@1.12.1
|
|
19
|
+
|
|
3
20
|
## 1.5.1
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splendidlabz/third-party",
|
|
3
3
|
"prettier": "@splendidlabz/prettier-config",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.3",
|
|
5
5
|
"description": "",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"main": "index.js",
|
|
8
7
|
"sideEffects": false,
|
|
9
8
|
"exports": {
|
|
10
9
|
"./*": "./lib/*.js"
|
|
@@ -16,17 +15,17 @@
|
|
|
16
15
|
},
|
|
17
16
|
"author": "Zell Liew <zellwk@gmail.com>",
|
|
18
17
|
"dependencies": {
|
|
19
|
-
"@splendidlabz/utils": "1.12.
|
|
18
|
+
"@splendidlabz/utils": "1.12.1",
|
|
19
|
+
"dotenv": "^17.4.2",
|
|
20
20
|
"googleapis": "^171.4.0",
|
|
21
|
-
"http-errors": "^2.0.1",
|
|
22
21
|
"pino": "^10.3.1",
|
|
23
22
|
"pino-pretty": "^13.1.3",
|
|
24
23
|
"postmark": "^4.0.7",
|
|
25
|
-
"vitest": "^4.1.4",
|
|
26
24
|
"zl-fetch": "^6.3.1"
|
|
27
25
|
},
|
|
28
26
|
"devDependencies": {
|
|
29
|
-
"@splendidlabz/eslint-config": "2.1.
|
|
30
|
-
"@splendidlabz/prettier-config": "1.2.0"
|
|
27
|
+
"@splendidlabz/eslint-config": "2.1.6",
|
|
28
|
+
"@splendidlabz/prettier-config": "1.2.0",
|
|
29
|
+
"vitest": "^4.1.4"
|
|
31
30
|
}
|
|
32
31
|
}
|