@junobuild/config 2.10.0 → 2.10.1-next-2026-02-08

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.
@@ -60,7 +60,7 @@ export interface EmulatorRunner {
60
60
  /**
61
61
  * The containerization tool to run the emulator.
62
62
  */
63
- type: 'docker' | 'podman';
63
+ type: 'docker' | 'podman' | 'container';
64
64
  /**
65
65
  * Image reference.
66
66
  * @default depends on emulator type, e.g. "junobuild/skylab:latest"
@@ -147,6 +147,7 @@ export interface Network {
147
147
  export declare const EmulatorConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
148
148
  runner: z.ZodOptional<z.ZodObject<{
149
149
  type: z.ZodEnum<{
150
+ container: "container";
150
151
  docker: "docker";
151
152
  podman: "podman";
152
153
  }>;
@@ -182,6 +183,7 @@ export declare const EmulatorConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
182
183
  }, z.core.$strict>, z.ZodObject<{
183
184
  runner: z.ZodOptional<z.ZodObject<{
184
185
  type: z.ZodEnum<{
186
+ container: "container";
185
187
  docker: "docker";
186
188
  podman: "podman";
187
189
  }>;
@@ -225,6 +227,7 @@ export declare const EmulatorConfigSchema: z.ZodUnion<readonly [z.ZodObject<{
225
227
  }, z.core.$strict>, z.ZodObject<{
226
228
  runner: z.ZodOptional<z.ZodObject<{
227
229
  type: z.ZodEnum<{
230
+ container: "container";
228
231
  docker: "docker";
229
232
  podman: "podman";
230
233
  }>;
@@ -262,6 +262,7 @@ export declare const JunoConfigSchema: z.ZodObject<{
262
262
  emulator: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
263
263
  runner: z.ZodOptional<z.ZodObject<{
264
264
  type: z.ZodEnum<{
265
+ container: "container";
265
266
  docker: "docker";
266
267
  podman: "podman";
267
268
  }>;
@@ -297,6 +298,7 @@ export declare const JunoConfigSchema: z.ZodObject<{
297
298
  }, z.core.$strict>, z.ZodObject<{
298
299
  runner: z.ZodOptional<z.ZodObject<{
299
300
  type: z.ZodEnum<{
301
+ container: "container";
300
302
  docker: "docker";
301
303
  podman: "podman";
302
304
  }>;
@@ -331,6 +333,7 @@ export declare const JunoConfigSchema: z.ZodObject<{
331
333
  }, z.core.$strict>, z.ZodObject<{
332
334
  runner: z.ZodOptional<z.ZodObject<{
333
335
  type: z.ZodEnum<{
336
+ container: "container";
334
337
  docker: "docker";
335
338
  podman: "podman";
336
339
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@junobuild/config",
3
- "version": "2.10.0",
3
+ "version": "2.10.1-next-2026-02-08",
4
4
  "description": "Configuration options for Juno CLI",
5
5
  "author": "David Dal Busco (https://daviddalbusco.com)",
6
6
  "license": "MIT",
@@ -41,7 +41,7 @@
41
41
  },
42
42
  "homepage": "https://juno.build",
43
43
  "peerDependencies": {
44
- "@dfinity/zod-schemas": "^3",
45
- "zod": "^4"
44
+ "@dfinity/zod-schemas": "*",
45
+ "zod": "*"
46
46
  }
47
- }
47
+ }