Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmandKrynauw committed Jul 28, 2023
1 parent c94ca1d commit e658618
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
"flowbite-svelte": "^0.39.2",
"langchain": "^0.0.104",
"sharp": "^0.32.1",
"svelte": "^3.59.0",
"tailwind-merge": "^1.13.2",
"tinykeys": "^1.4.0",
"zod": "^3.21.4"
Expand Down Expand Up @@ -133,7 +134,6 @@
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-svelte": "^7.1.4",
"svelte": "^3.59.0",
"svelte-check": "^3.3.1",
"svelte-fa": "^3.0.4",
"svelte-jester": "^2.3.2",
Expand Down
2 changes: 1 addition & 1 deletion src/electron/lib/core-graph/CoreGraphInteractors.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { GraphEdge, GraphNode, NodeStylingStore, UIGraph } from "../../../shared/ui/UIGraph";
import { GraphEdge, GraphNode, UIGraph } from "../../../shared/ui/UIGraph";
import { type UUID } from "../../../shared/utils/UniqueEntity";
import { CoreGraph, NodesAndEdgesGraph } from "./CoreGraph";

Expand Down
2 changes: 1 addition & 1 deletion src/frontend/ui/tiles/Debug.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import { graphMall } from "@frontend/lib/stores/GraphStore";
import { projectsStore } from "@frontend/lib/stores/ProjectStore";
import { toolboxStore } from "lib/stores/ToolboxStore";
import { toolboxStore } from "../../lib/stores/ToolboxStore";
import { get } from "svelte/store";
let graphIds = graphMall.getAllGraphUUIDsReactive();
Expand Down
4 changes: 2 additions & 2 deletions src/frontend/ui/tiles/Graph.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import { type Readable } from "svelte/store";
import { GraphStore, graphMall, focusedGraphStore } from "../../lib/stores/GraphStore";
import PluginNode from "../utils/graph/PluginNode.svelte";
import { projectsStore } from "lib/stores/ProjectStore";
import { projectsStore } from "../../lib/stores/ProjectStore";
import { graphMenuStore } from "../../lib/stores/GraphContextMenuStore";
import type { UUID } from "@shared/utils/UniqueEntity";
import { GraphNode, type GraphEdge } from "@shared/ui/UIGraph";
import { tick } from "svelte";
import { focusedPanelStore } from "lib/PanelNode";
import { focusedPanelStore } from "../../lib/PanelNode";
import { onDestroy } from "svelte";
import { fade } from "svelte/transition";
import { mediaStore } from "../../lib/stores/MediaStore";
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/ui/utils/graph/PluginNode.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script lang="ts">
import { GraphNode, NodeStylingStore } from "@shared/ui/UIGraph";
import { Anchor, DefaultAnchor, Node, type CSSColorString } from "blix_svelvet";
import { toolboxStore } from "lib/stores/ToolboxStore";
import { toolboxStore } from "../../../lib/stores/ToolboxStore";
import NodeUiFragment from "./NodeUIFragment.svelte";
import { createEventDispatcher } from "svelte";
Expand Down
3 changes: 0 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ import { Blix } from "./electron/lib/Blix";
import { CoreGraphInterpreter } from "./electron/lib/core-graph/CoreGraphInterpreter";
import { exposeMainApis } from "./electron/lib/api/MainApi";
import { MainWindow, bindMainWindowApis } from "./electron/lib/api/apis/WindowApi";
import dotenv from "dotenv";

dotenv.config();

const isProd = process.env.NODE_ENV === "production" || app.isPackaged;

Expand Down

0 comments on commit e658618

Please sign in to comment.