lightnet 4.0.4 → 4.0.6
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 +12 -0
- package/package.json +4 -4
- package/src/astro-integration/config.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# lightnet
|
|
2
2
|
|
|
3
|
+
## 4.0.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#378](https://github.com/LightNetDev/LightNet/pull/378) [`bc3d294`](https://github.com/LightNetDev/LightNet/commit/bc3d2949baacb6c577770de18902ddbd04ede10f) Thanks [@smn-cds](https://github.com/smn-cds)! - Update dependencies
|
|
8
|
+
|
|
9
|
+
## 4.0.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#376](https://github.com/LightNetDev/LightNet/pull/376) [`f652369`](https://github.com/LightNetDev/LightNet/commit/f652369745ab9886f71dc1daefd8020b700eadca) Thanks [@smn-cds](https://github.com/smn-cds)! - Fix exported Language type.
|
|
14
|
+
|
|
3
15
|
## 4.0.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "LightNet makes it easy to run your own digital media library.",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.6",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/LightNetDev/lightnet",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"embla-carousel-wheel-gestures": "^8.1.0",
|
|
63
63
|
"fuse.js": "^7.3.0",
|
|
64
64
|
"i18next": "^25.10.10",
|
|
65
|
-
"lucide-react": "^1.
|
|
65
|
+
"lucide-react": "^1.8.0",
|
|
66
66
|
"marked": "^17.0.6",
|
|
67
67
|
"postcss": "^8.5.9",
|
|
68
68
|
"postcss-load-config": "^6.0.1",
|
|
@@ -72,9 +72,9 @@
|
|
|
72
72
|
"@internal/e2e-test-utils": "^0.0.1",
|
|
73
73
|
"@playwright/test": "^1.59.1",
|
|
74
74
|
"@types/react": "^19.2.14",
|
|
75
|
-
"astro": "^6.1.
|
|
75
|
+
"astro": "^6.1.5",
|
|
76
76
|
"typescript": "^5.9.3",
|
|
77
|
-
"vitest": "^4.1.
|
|
77
|
+
"vitest": "^4.1.4"
|
|
78
78
|
},
|
|
79
79
|
"engines": {
|
|
80
80
|
"node": ">=22"
|
|
@@ -235,7 +235,7 @@ export const extendedConfigSchema = configSchema.transform((config, ctx) => {
|
|
|
235
235
|
})
|
|
236
236
|
|
|
237
237
|
export type Link = z.input<typeof linkSchema>
|
|
238
|
-
export type Language = z.
|
|
238
|
+
export type Language = z.input<typeof languageSchema>
|
|
239
239
|
|
|
240
240
|
export type LightnetConfig = z.input<typeof configSchema>
|
|
241
241
|
export type ExtendedLightnetConfig = z.output<typeof extendedConfigSchema>
|