mirror of
https://github.com/MercuryWorkshop/adrift.git
synced 2025-05-13 06:10:01 -04:00
fix: update package name to mw namespace, add micromatch to dependencies (#7)
This commit is contained in:
parent
ae07add617
commit
fd74e36a8a
4 changed files with 5 additions and 5 deletions
|
@ -6,7 +6,7 @@ import {
|
||||||
MetaCallback,
|
MetaCallback,
|
||||||
ReadyStateCallback,
|
ReadyStateCallback,
|
||||||
WebSocketImpl,
|
WebSocketImpl,
|
||||||
} from "bare-client-custom";
|
} from "@mercuryworkshop/bare-client-custom";
|
||||||
import { MAX_CHUNK_SIZE } from "protocol";
|
import { MAX_CHUNK_SIZE } from "protocol";
|
||||||
import { Connection } from "./Connection";
|
import { Connection } from "./Connection";
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { setBareClientImplementation } from "bare-client-custom";
|
import { setBareClientImplementation } from "@mercuryworkshop/bare-client-custom";
|
||||||
import {
|
import {
|
||||||
AdriftBareClient,
|
AdriftBareClient,
|
||||||
Connection,
|
Connection,
|
||||||
|
@ -64,7 +64,7 @@
|
||||||
let showSwarmWarning = false;
|
let showSwarmWarning = false;
|
||||||
let showLogin = false;
|
let showLogin = false;
|
||||||
type TrackerID = keyof typeof TrackerList;
|
type TrackerID = keyof typeof TrackerList;
|
||||||
type Tracker = typeof TrackerList[TrackerID];
|
type Tracker = (typeof TrackerList)[TrackerID];
|
||||||
|
|
||||||
let chosenTracker: TrackerID | undefined;
|
let chosenTracker: TrackerID | undefined;
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { BareClient } from "bare-client-custom";
|
import { BareClient } from "@mercuryworkshop/bare-client-custom";
|
||||||
import { Win, openWindow } from "../../corium";
|
import { Win, openWindow } from "../../corium";
|
||||||
import Icon from "@iconify/svelte";
|
import Icon from "@iconify/svelte";
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@ if (import.meta.env.VITE_ADRIFT_CDN && import.meta.env.VITE_ADRIFT_SINGLEFILE) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
import { registerRemoteListener } from "bare-client-custom";
|
import { registerRemoteListener } from "@mercuryworkshop/bare-client-custom";
|
||||||
import App from "./App.svelte";
|
import App from "./App.svelte";
|
||||||
|
|
||||||
import "./index.css";
|
import "./index.css";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue