# HG changeset patch # User drewp@bigasterisk.com # Date 2023-05-18 02:34:32 # Node ID a7a46291901fa4611454dbb13b60b3e37f8a4f7f # Parent e13b62bfdaff5f3d96739c09c65737451b7b2bd1 move diff --git a/light9/web/collector/Light9CollectorDevice.ts b/light9/collector/web/Light9CollectorDevice.ts rename from light9/web/collector/Light9CollectorDevice.ts rename to light9/collector/web/Light9CollectorDevice.ts --- a/light9/web/collector/Light9CollectorDevice.ts +++ b/light9/collector/web/Light9CollectorDevice.ts @@ -2,7 +2,7 @@ import debug from "debug"; import { css, html, LitElement } from "lit"; import { customElement, property } from "lit/decorators.js"; import { NamedNode } from "n3"; -export { ResourceDisplay } from "../ResourceDisplay"; +export { ResourceDisplay } from "../../web/ResourceDisplay"; const log = debug("device-el"); diff --git a/light9/collector/web/Light9CollectorUi.ts b/light9/collector/web/Light9CollectorUi.ts --- a/light9/collector/web/Light9CollectorUi.ts +++ b/light9/collector/web/Light9CollectorUi.ts @@ -4,7 +4,7 @@ import { customElement, property } from import { NamedNode } from "n3"; import ReconnectingWebSocket from "reconnectingwebsocket"; import { sortBy, uniq } from "underscore"; -import { Light9CollectorDevice } from "../../web/collector/Light9CollectorDevice"; +import { Light9CollectorDevice } from "./Light9CollectorDevice"; import { Patch } from "../../web/patch"; import { getTopGraph } from "../../web/RdfdbSyncedGraph"; import { SyncedGraph } from "../../web/SyncedGraph"; diff --git a/light9/web/collector/README.md b/light9/web/collector/README.md deleted file mode 100644 --- a/light9/web/collector/README.md +++ /dev/null @@ -1,1 +0,0 @@ -this is meant to be at light9/collector/web but I couldn't figure out the vite paths \ No newline at end of file