@eik/core 1.3.60 → 1.4.0
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 +19 -0
- package/lib/main.js +1 -0
- package/lib/utils/globals.js +1 -0
- package/package.json +2 -2
- package/types/main.d.ts +1 -0
- package/types/utils/globals.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
# [1.4.0](https://github.com/eik-lib/core/compare/v1.3.61...v1.4.0) (2024-08-14)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update to @eik/common v2.1.0 ([7ac426b](https://github.com/eik-lib/core/commit/7ac426b4a1e7c6698672b0e01a411a00afc2b5c1))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add support for Eik image type ([d54b4c9](https://github.com/eik-lib/core/commit/d54b4c9a15d36851b5ab8b7e8a09cfdb9f3ca786))
|
|
12
|
+
|
|
13
|
+
## [1.3.61](https://github.com/eik-lib/core/compare/v1.3.60...v1.3.61) (2024-08-14)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **deps:** update dependency @eik/common to v4.1.0 ([7c1c02e](https://github.com/eik-lib/core/commit/7c1c02e346f78d5ff884c4fa5135a289c72b1b1d))
|
|
19
|
+
|
|
1
20
|
## [1.3.60](https://github.com/eik-lib/core/compare/v1.3.59...v1.3.60) (2024-08-13)
|
|
2
21
|
|
|
3
22
|
|
package/lib/main.js
CHANGED
package/lib/utils/globals.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eik/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Core server package",
|
|
5
5
|
"main": "lib/main.js",
|
|
6
6
|
"types": "./types/main.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"author": "",
|
|
26
26
|
"license": "MIT",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@eik/common": "4.0
|
|
28
|
+
"@eik/common": "4.1.0",
|
|
29
29
|
"@eik/sink": "1.2.5",
|
|
30
30
|
"@eik/sink-file-system": "1.0.1",
|
|
31
31
|
"@eik/sink-memory": "1.1.1",
|
package/types/main.d.ts
CHANGED