symphony-orchestrator 0.1.0 → 0.1.2
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/README.md +16 -3
- package/apps/frontend/dist/assets/{index-CI3z9Z5d.js → index-B7ZCNhPO.js} +7 -7
- package/apps/frontend/dist/assets/index-DBuecqDp.css +1 -0
- package/apps/frontend/dist/index.html +2 -2
- package/bin/symphony.js +5 -1
- package/package.json +1 -1
- package/vendor/symphony-darwin-arm64 +0 -0
- package/vendor/symphony-darwin-x64 +0 -0
- package/vendor/symphony-linux-x64 +0 -0
- package/vendor/symphony-win32-x64.exe +0 -0
- package/apps/frontend/dist/assets/index-ByxrBxkB.css +0 -1
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
6
|
<title>Personal Symphony</title>
|
|
7
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-B7ZCNhPO.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index-DBuecqDp.css">
|
|
9
9
|
</head>
|
|
10
10
|
<body class="bg-zinc-950 text-zinc-100">
|
|
11
11
|
<main id="root"></main>
|
package/bin/symphony.js
CHANGED
|
@@ -18,7 +18,11 @@ function executableCandidate() {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
function run(command, args, options = {}) {
|
|
21
|
-
const child = spawn(command, args, {
|
|
21
|
+
const child = spawn(command, args, {
|
|
22
|
+
stdio: "inherit",
|
|
23
|
+
env: { ...process.env, SYMPHONY_LAUNCHER_PATH: process.argv[1] },
|
|
24
|
+
...options
|
|
25
|
+
});
|
|
22
26
|
child.on("exit", (code, signal) => {
|
|
23
27
|
if (signal) {
|
|
24
28
|
process.kill(process.pid, signal);
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|