lakutata 2.0.21 → 2.0.23

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/com/docker.cjs CHANGED
@@ -272,6 +272,10 @@ require("node:stream");
272
272
 
273
273
  require("../src/lib/core/Time.cjs");
274
274
 
275
+ require("node:fs/promises");
276
+
277
+ require("node:path");
278
+
275
279
  require("../src/lib/helpers/UniqueArray.cjs");
276
280
 
277
281
  require("stream/promises");
package/com/docker.d.ts CHANGED
@@ -2676,13 +2676,14 @@ declare class ImageRemoveOptions extends DTO {
2676
2676
  }
2677
2677
 
2678
2678
  declare class DockerAuthOptions extends DTO {
2679
- username: string;
2680
- password: string;
2679
+ username?: string;
2680
+ password?: string;
2681
2681
  /**
2682
2682
  * The serverAddress is a domain/IP without a protocol
2683
2683
  */
2684
2684
  serverAddress: string;
2685
- email?: string | undefined;
2685
+ identityToken?: string | undefined;
2686
+ registryToken?: string | undefined;
2686
2687
  }
2687
2688
 
2688
2689
  type DockerOutputCallback = (output: Record<string, any>) => void;
@@ -3609,6 +3610,7 @@ declare class ImageBuildOptions extends DTO {
3609
3610
  buildargs?: {
3610
3611
  [key: string]: string;
3611
3612
  };
3613
+ auth?: DockerAuthOptions;
3612
3614
  outputCallback?: DockerOutputCallback;
3613
3615
  }
3614
3616
 
package/com/docker.mjs CHANGED
@@ -266,6 +266,10 @@ import "node:stream";
266
266
 
267
267
  import "../src/lib/core/Time.mjs";
268
268
 
269
+ import "node:fs/promises";
270
+
271
+ import "node:path";
272
+
269
273
  import "../src/lib/helpers/UniqueArray.mjs";
270
274
 
271
275
  import "stream/promises";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lakutata",
3
- "version": "2.0.21",
3
+ "version": "2.0.23",
4
4
  "description": "An IoC-based universal application framework.",
5
5
  "exports": {
6
6
  ".": {
@@ -88,9 +88,5 @@
88
88
  "lakutata",
89
89
  "framework",
90
90
  "typescript"
91
- ],
92
- "dependencies": {
93
- "strip-ansi": "^7.1.0",
94
- "strip-bom": "^5.0.0"
95
- }
91
+ ]
96
92
  }
@@ -284,6 +284,10 @@ require("./exceptions/DockerNetworkNotFoundException.cjs");
284
284
 
285
285
  require("./options/DockerPruneOptions.cjs");
286
286
 
287
+ require("node:fs/promises");
288
+
289
+ require("node:path");
290
+
287
291
  const r = r => ({
288
292
  ...r,
289
293
  class: e.Docker
@@ -278,6 +278,10 @@ import "./exceptions/DockerNetworkNotFoundException.mjs";
278
278
 
279
279
  import "./options/DockerPruneOptions.mjs";
280
280
 
281
+ import "node:fs/promises";
282
+
283
+ import "node:path";
284
+
281
285
  const t = t => ({
282
286
  ...t,
283
287
  class: o