@plasmicapp/nextjs-app-router 1.0.5 → 1.0.6

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.
@@ -7567,7 +7567,7 @@ async function startDevServer(command2, port, opts) {
7567
7567
  resolve5(devServerProcess);
7568
7568
  }
7569
7569
  if (opts?.verbose) {
7570
- console.log(data);
7570
+ console.log(data.toString());
7571
7571
  }
7572
7572
  });
7573
7573
  devServerProcess.stderr?.on("data", (data) => {
@@ -7576,7 +7576,7 @@ async function startDevServer(command2, port, opts) {
7576
7576
  reject(new Error(`Error starting dev server: ${data.toString()}`));
7577
7577
  }
7578
7578
  if (opts?.verbose) {
7579
- console.error(data);
7579
+ console.error(data.toString());
7580
7580
  }
7581
7581
  });
7582
7582
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/nextjs-app-router",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "types": "./dist/index.d.ts",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.esm.js",
@@ -70,5 +70,5 @@
70
70
  "react": "^18.2.0",
71
71
  "typescript": "^5.2.2"
72
72
  },
73
- "gitHead": "c67e84b4997e6c9aabe74ac4052a11a91711f80a"
73
+ "gitHead": "1196edcc7a9bd5c33bf8d518546c3a025c40bd29"
74
74
  }