@flow-os/client 0.0.51-dev.1772054586 → 0.0.51-dev.1772055701

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/package.json +1 -1
  2. package/src/cli/dev.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flow-os/client",
3
- "version": "0.0.51-dev.1772054586",
3
+ "version": "0.0.51-dev.1772055701",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/src/cli/dev.ts CHANGED
@@ -171,7 +171,7 @@ export async function dev() {
171
171
  const localLine = U + '│' + R + ' '.repeat(PAD_LEFT) + pad(localContent, innerW - PAD_LEFT) + U + '│' + R;
172
172
  const netContent = network ? iconNetwork + ' Network: ' + U + network + R : iconNetwork + ' Network: (not exposed)';
173
173
  const networkLine = U + '│' + R + ' '.repeat(PAD_LEFT) + pad(netContent, innerW - PAD_LEFT) + U + '│' + R;
174
- const banner = '\x1b[2A\r\x1b[K\n' + top + '\n' + emptyLine + '\n' + localLine + '\n' + networkLine + '\n' + bottom + '\n\n';
174
+ const banner = '\n' + top + '\n' + emptyLine + '\n' + localLine + '\n' + networkLine + '\n' + bottom + '\n\n';
175
175
  process.stdout.write(banner);
176
176
  resolve();
177
177
  });