@rubytech/create-maxy 1.0.631 → 1.0.633
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.js +4 -1
- package/package.json +1 -1
- package/payload/server/public/assets/{admin-BntwbBs-.js → admin-Cacbe9nP.js} +2 -2
- package/payload/server/public/assets/{public-Cizdj15i.js → public-CBVU1ErT.js} +1 -1
- package/payload/server/public/assets/useVoiceRecorder-baV6L6a0.css +1 -0
- package/payload/server/public/index.html +3 -3
- package/payload/server/public/public.html +3 -3
- package/payload/server/server.js +22 -8
- package/payload/server/public/assets/useVoiceRecorder-DIV9KAk_.css +0 -1
- /package/payload/server/public/assets/{useVoiceRecorder-tbj4tUsl.js → useVoiceRecorder-xC0cS-GO.js} +0 -0
package/dist/index.js
CHANGED
|
@@ -840,7 +840,10 @@ function installUv() {
|
|
|
840
840
|
}
|
|
841
841
|
console.log(" Installing uv (Python tool runner — required by Neo4j MCP server)...");
|
|
842
842
|
logFile(" uv: installing via astral.sh installer");
|
|
843
|
-
|
|
843
|
+
// astral.sh installer auto-confirms when stdin is not a TTY (our case under
|
|
844
|
+
// systemd-run). Historically we passed `-y`, which the script rejects with
|
|
845
|
+
// "unknown option -y" and causes uv to never install on upgrade.
|
|
846
|
+
const result = spawnSync("bash", ["-c", "curl -LsSf https://astral.sh/uv/install.sh | sh"], { stdio: "inherit" });
|
|
844
847
|
if (result.status !== 0) {
|
|
845
848
|
console.error(` WARNING: uv install exited ${result.status} — graph MCP server will fail at session start until this is retried`);
|
|
846
849
|
logFile(` WARNING: uv install failed with status ${result.status}`);
|