label-printer 0.5.3 → 0.5.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.
package/dist/index.mjs CHANGED
@@ -127,7 +127,7 @@ var CommandGroup = class extends Command {
127
127
  });
128
128
  }
129
129
  get commandString() {
130
- return "";
130
+ return this.commands.map((c) => c.commandString).join("\n");
131
131
  }
132
132
  };
133
133