@lithia-js/core 1.0.0-canary.4 → 1.0.0-canary.5
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 +9 -0
- package/dist/lithia.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @lithia-js/core
|
|
2
2
|
|
|
3
|
+
## 1.0.0-canary.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e64696c: Remove unused imports from @lithia-js/utils and fixed `create-lithia` CLI
|
|
8
|
+
- Updated dependencies [e64696c]
|
|
9
|
+
- @lithia-js/utils@1.0.0-canary.5
|
|
10
|
+
- @lithia-js/native@1.0.0-canary.5
|
|
11
|
+
|
|
3
12
|
## 1.0.0-canary.4
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/lithia.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ import type { LithiaMiddleware } from "./server/request-processor";
|
|
|
23
23
|
* Influences logging verbosity, error output formatting, and features like
|
|
24
24
|
* configuration hot-reloading (enabled only in development).
|
|
25
25
|
*/
|
|
26
|
-
export type Environment = "build" | "production" | "development";
|
|
26
|
+
export type Environment = 'test' | "build" | "production" | "development";
|
|
27
27
|
/**
|
|
28
28
|
* Options required to create a Lithia instance.
|
|
29
29
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lithia-js/core",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.5",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "dist/lib.js",
|
|
6
6
|
"types": "dist/lib.d.ts",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"socket.io": "^4.8.1",
|
|
28
28
|
"source-map-support": "^0.5.21",
|
|
29
29
|
"zod": "^4.2.1",
|
|
30
|
-
"@lithia-js/
|
|
31
|
-
"@lithia-js/
|
|
30
|
+
"@lithia-js/utils": "1.0.0-canary.5",
|
|
31
|
+
"@lithia-js/native": "1.0.0-canary.5"
|
|
32
32
|
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=20"
|