@eik/core 1.3.61 → 1.4.1

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 CHANGED
@@ -1,3 +1,22 @@
1
+ ## [1.4.1](https://github.com/eik-lib/core/compare/v1.4.0...v1.4.1) (2024-08-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update dependency @eik/sink-memory to v1.1.2 ([b757e0d](https://github.com/eik-lib/core/commit/b757e0d0b5aa1e602e4baba1585e36a5b4711749))
7
+
8
+ # [1.4.0](https://github.com/eik-lib/core/compare/v1.3.61...v1.4.0) (2024-08-14)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * update to @eik/common v2.1.0 ([7ac426b](https://github.com/eik-lib/core/commit/7ac426b4a1e7c6698672b0e01a411a00afc2b5c1))
14
+
15
+
16
+ ### Features
17
+
18
+ * add support for Eik image type ([d54b4c9](https://github.com/eik-lib/core/commit/d54b4c9a15d36851b5ab8b7e8a09cfdb9f3ca786))
19
+
1
20
  ## [1.3.61](https://github.com/eik-lib/core/compare/v1.3.60...v1.3.61) (2024-08-14)
2
21
 
3
22
 
package/lib/main.js CHANGED
@@ -57,6 +57,7 @@ const prop = {
57
57
  base_map: globals.BASE_IMPORT_MAPS,
58
58
  base_pkg: globals.BASE_PACKAGES,
59
59
  base_npm: globals.BASE_NPM,
60
+ base_img: globals.BASE_IMG,
60
61
  };
61
62
 
62
63
  export default {
@@ -3,6 +3,7 @@ const globals = {
3
3
  BASE_IMPORT_MAPS: "map",
4
4
  BASE_PACKAGES: "pkg",
5
5
  BASE_NPM: "npm",
6
+ BASE_IMG: "img",
6
7
  ROOT: "/",
7
8
  };
8
9
  export default globals;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eik/core",
3
- "version": "1.3.61",
3
+ "version": "1.4.1",
4
4
  "description": "Core server package",
5
5
  "main": "lib/main.js",
6
6
  "types": "./types/main.d.ts",
@@ -28,7 +28,7 @@
28
28
  "@eik/common": "4.1.0",
29
29
  "@eik/sink": "1.2.5",
30
30
  "@eik/sink-file-system": "1.0.1",
31
- "@eik/sink-memory": "1.1.1",
31
+ "@eik/sink-memory": "1.1.2",
32
32
  "@metrics/client": "2.5.3",
33
33
  "abslog": "2.4.4",
34
34
  "busboy": "1.6.0",
package/types/main.d.ts CHANGED
@@ -29,6 +29,7 @@ declare namespace prop {
29
29
  let base_map: string;
30
30
  let base_pkg: string;
31
31
  let base_npm: string;
32
+ let base_img: string;
32
33
  }
33
34
  import VersionsGet from "./handlers/versions.get.js";
34
35
  import AliasPost from "./handlers/alias.post.js";
@@ -4,5 +4,6 @@ declare namespace globals {
4
4
  let BASE_IMPORT_MAPS: string;
5
5
  let BASE_PACKAGES: string;
6
6
  let BASE_NPM: string;
7
+ let BASE_IMG: string;
7
8
  let ROOT: string;
8
9
  }