web: rename queen-bee to task-manager
Some checks failed
CodeQL / Analyze (${{ matrix.language }}) (none, javascript-typescript) (push) Has been cancelled
Run tests / check lockfile correctness (push) Has been cancelled
Run tests / web sanity check (push) Has been cancelled
Run tests / api sanity check (push) Has been cancelled

less corny and less cryptic
This commit is contained in:
wukko
2025-04-02 14:57:45 +06:00
parent f4f7032062
commit 0fb4cd7888
13 changed files with 24 additions and 24 deletions

View File

@@ -1,7 +1,7 @@
import { readable, type Updater } from "svelte/store";
import type { CobaltWorkerProgress } from "$lib/types/workers";
import type { CobaltCurrentTasks, CobaltCurrentTaskItem } from "$lib/types/queen-bee";
import type { CobaltCurrentTasks, CobaltCurrentTaskItem } from "$lib/types/task-manager";
let update: (_: Updater<CobaltCurrentTasks>) => void;

View File

@@ -1,8 +1,8 @@
import { readable, type Updater } from "svelte/store";
import { schedule } from "$lib/queen-bee/scheduler";
import { schedule } from "$lib/task-manager/scheduler";
import { clearFileStorage, removeFromFileStorage } from "$lib/storage";
import { clearCurrentTasks, removeWorkerFromQueue } from "$lib/state/queen-bee/current-tasks";
import { clearCurrentTasks, removeWorkerFromQueue } from "$lib/state/task-manager/current-tasks";
import type { CobaltFileReference } from "$lib/types/storage";
import type { CobaltQueue, CobaltQueueItem, CobaltQueueItemRunning } from "$lib/types/queue";