@highstate/cli 0.5.2 → 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.
Files changed (2) hide show
  1. package/dist/main.js +3 -3
  2. package/package.json +3 -3
package/dist/main.js CHANGED
@@ -1428,7 +1428,7 @@ class VersionCommand extends Command {
1428
1428
  }
1429
1429
  VersionCommand.paths = [[`-v`], [`--version`]];
1430
1430
 
1431
- var version$2 = "0.5.1";
1431
+ var version$2 = "0.5.3";
1432
1432
 
1433
1433
  const _DRIVE_LETTER_START_RE$1 = /^[A-Za-z]:\//;
1434
1434
  function normalizeWindowsPath$1(input = "") {
@@ -14104,14 +14104,14 @@ class DesignerCommand extends Command {
14104
14104
  }
14105
14105
  if (!packageJson.devDependencies?.["@highstate/designer"]) {
14106
14106
  logger.info("Installing @highstate/designer...");
14107
- await addDevDependency("@highstate/designer");
14107
+ await addDevDependency(["@highstate/designer", "classic-level"]);
14108
14108
  }
14109
14109
  logger.info("starting highstate designer...");
14110
14110
  await getBackendServices();
14111
14111
  const oldConsoleLog = console.log;
14112
14112
  const port = await getPort();
14113
14113
  process.env.NITRO_PORT = port.toString();
14114
- process.env.NITRO_HOST = "localhost";
14114
+ process.env.NITRO_HOST = "0.0.0.0";
14115
14115
  await new Promise((resolve) => {
14116
14116
  console.log = (message) => {
14117
14117
  if (message.startsWith("Listening on")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highstate/cli",
3
- "version": "0.5.2",
3
+ "version": "0.5.4",
4
4
  "description": "The CLI for the Highstate project.",
5
5
  "type": "module",
6
6
  "files": [
@@ -16,7 +16,7 @@
16
16
  "build": "pkgroll --tsconfig=tsconfig.build.json"
17
17
  },
18
18
  "dependencies": {
19
- "@highstate/backend": "^0.5.2",
19
+ "@highstate/backend": "^0.5.4",
20
20
  "consola": "^3.4.0"
21
21
  },
22
22
  "devDependencies": {
@@ -27,5 +27,5 @@
27
27
  "pkg-types": "^1.2.1",
28
28
  "pkgroll": "^2.5.1"
29
29
  },
30
- "gitHead": "88ec44336bbdd081cfbc4cb06db9b34c6314dbd2"
30
+ "gitHead": "d185cf2269127b4a82156121fc493dea9b7108c3"
31
31
  }