dokku-compose 0.6.3 → 0.6.4

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -582,11 +582,14 @@ var Builder = {
582
582
  const appJsonBulk = parseBulkReport(appJsonRaw, "app-json");
583
583
  const dockerOptsBulk = parseBulkReport(dockerOptsRaw, "docker-options");
584
584
  if (process.env.DOKKU_COMPOSE_DEBUG) {
585
- const app0 = [...builderBulk.keys()][0];
585
+ console.error("[debug] builderRaw length:", builderRaw.length);
586
+ console.error("[debug] dockerfileRaw length:", dockerfileRaw.length);
587
+ console.error("[debug] appJsonRaw length:", appJsonRaw.length);
588
+ console.error("[debug] dockerOptsRaw length:", dockerOptsRaw.length);
589
+ console.error("[debug] dockerfileRaw first 300:", JSON.stringify(dockerfileRaw.slice(0, 300)));
590
+ console.error("[debug] dockerOptsRaw first 300:", JSON.stringify(dockerOptsRaw.slice(0, 300)));
586
591
  console.error("[debug] builderBulk keys:", [...builderBulk.keys()]);
587
592
  console.error("[debug] dockerfileBulk keys:", [...dockerfileBulk.keys()]);
588
- console.error("[debug] dockerfileBulk[" + app0 + "]:", JSON.stringify(dockerfileBulk.get(app0)));
589
- console.error("[debug] dockerOptsRaw first 200:", dockerOptsRaw.slice(0, 200));
590
593
  console.error("[debug] dockerOptsBulk keys:", [...dockerOptsBulk.keys()]);
591
594
  }
592
595
  const result = /* @__PURE__ */ new Map();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dokku-compose",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "Docker Compose for Dokku — declare your entire server in a single YAML file.",
5
5
  "main": "dist/index.js",
6
6
  "exports": "./dist/index.js",