mirror of
https://github.com/MercuryWorkshop/adrift.git
synced 2025-05-12 13:50: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,
|
||||
ReadyStateCallback,
|
||||
WebSocketImpl,
|
||||
} from "bare-client-custom";
|
||||
} from "@mercuryworkshop/bare-client-custom";
|
||||
import { MAX_CHUNK_SIZE } from "protocol";
|
||||
import { Connection } from "./Connection";
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { setBareClientImplementation } from "bare-client-custom";
|
||||
import { setBareClientImplementation } from "@mercuryworkshop/bare-client-custom";
|
||||
import {
|
||||
AdriftBareClient,
|
||||
Connection,
|
||||
|
@ -64,7 +64,7 @@
|
|||
let showSwarmWarning = false;
|
||||
let showLogin = false;
|
||||
type TrackerID = keyof typeof TrackerList;
|
||||
type Tracker = typeof TrackerList[TrackerID];
|
||||
type Tracker = (typeof TrackerList)[TrackerID];
|
||||
|
||||
let chosenTracker: TrackerID | undefined;
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
import { BareClient } from "bare-client-custom";
|
||||
import { BareClient } from "@mercuryworkshop/bare-client-custom";
|
||||
import { Win, openWindow } from "../../corium";
|
||||
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 "./index.css";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue