lakutata 2.0.14 → 2.0.15

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lakutata",
3
- "version": "2.0.14",
3
+ "version": "2.0.15",
4
4
  "description": "An IoC-based universal application framework.",
5
5
  "exports": {
6
6
  ".": {
@@ -2611,7 +2611,7 @@ exports.Docker = class Docker extends t.Component {
2611
2611
  };
2612
2612
  const r = {
2613
2613
  dockerfile: e.dockerfile,
2614
- t: e.repoTag ? e.repoTag : `UNNAMED_IMG_${Date.now().toString(16).toUpperCase()}${Math.floor(Math.random() * 255).toString(16).padStart(2, "0")}`,
2614
+ t: e.repoTag ? e.repoTag : `unnamed_img_${Date.now().toString(16)}${Math.floor(Math.random() * 255).toString(16).padStart(2, "0")}`,
2615
2615
  remote: e.remote,
2616
2616
  q: e.quite,
2617
2617
  nocache: e.nocache,
@@ -2607,7 +2607,7 @@ let qr = class Docker extends i {
2607
2607
  };
2608
2608
  const i = {
2609
2609
  dockerfile: t.dockerfile,
2610
- t: t.repoTag ? t.repoTag : `UNNAMED_IMG_${Date.now().toString(16).toUpperCase()}${Math.floor(Math.random() * 255).toString(16).padStart(2, "0")}`,
2610
+ t: t.repoTag ? t.repoTag : `unnamed_img_${Date.now().toString(16)}${Math.floor(Math.random() * 255).toString(16).padStart(2, "0")}`,
2611
2611
  remote: t.remote,
2612
2612
  q: t.quite,
2613
2613
  nocache: t.nocache,