@loopstack/loopstack-studio 0.29.2 → 0.29.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.
package/dist/config.js
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
var config_default = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
var config_default = {
|
|
2
|
+
environment: {
|
|
3
|
+
id: "local",
|
|
4
|
+
name: "Local Environment",
|
|
5
|
+
url: window.__LOOPSTACK_CONFIG__?.apiUrl ?? void 0 ?? "http://localhost:3000"
|
|
6
|
+
},
|
|
7
|
+
build: {
|
|
8
|
+
version: "dev",
|
|
9
|
+
commitSha: "dev"
|
|
10
|
+
}
|
|
11
|
+
};
|
|
6
12
|
export { config_default as default };
|
|
@@ -11,8 +11,8 @@ import "../features/debug/index.js";
|
|
|
11
11
|
import WorkflowItem_default from "../features/workbench/WorkflowItem.js";
|
|
12
12
|
import WorkflowHistoryList_default from "../features/workbench/components/WorkflowHistoryList.js";
|
|
13
13
|
import { NewRunDialog } from "../features/workbench/components/NewRunDialog.js";
|
|
14
|
-
import "../features/workbench/index.js";
|
|
15
14
|
import config_default from "../config.js";
|
|
15
|
+
import "../features/workbench/index.js";
|
|
16
16
|
import { c } from "react/compiler-runtime";
|
|
17
17
|
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
|
18
18
|
import { jsx, jsxs } from "react/jsx-runtime";
|