brep-io-kernel 1.0.108 → 1.0.109
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/bin/brep-io-kernel.js +1 -1
- package/package.json +1 -1
package/bin/brep-io-kernel.js
CHANGED
|
@@ -221,7 +221,7 @@ function startStaticServer({ host, port }) {
|
|
|
221
221
|
const displayHost = host.includes(":") ? `[${host}]` : host;
|
|
222
222
|
const baseUrl = `http://${displayHost}:${port}`;
|
|
223
223
|
console.log(`${packageJson.name} ${packageJson.version}`);
|
|
224
|
-
console.log(
|
|
224
|
+
console.log("");
|
|
225
225
|
console.log(`Open: ${baseUrl}${landingPath}`);
|
|
226
226
|
});
|
|
227
227
|
|