Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oops path #324

Merged
merged 2 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ check:

# Automatically fix some issues.
fix:
cargo clippy --all --fix --allow-dirty --allow-staged --all-targets --all-features
cargo clippy --all --fix --allow-staged --all-targets --all-features
cargo fmt --all
npm i && npm run fix

Expand Down
2 changes: 1 addition & 1 deletion moq-web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "moq-web"
authors = ["Luke Curley <[email protected]>"]
edition = "2021"
version = "0.4.1"
version = "0.4.2"
license = "MIT OR Apache-2.0"
repository = "https://github.com/kixelated/moq-web"
description = "Web implementation for MoQ utilizing WebAssembly+Typescript"
Expand Down
2 changes: 1 addition & 1 deletion moq-web/src/element/publish.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as Rust from "@rust";

import { Element, attribute, element } from "./component";

import { jsx, jsxFragment } from "./jsx";
import { jsx } from "./jsx";

import "@shoelace-style/shoelace/dist/components/radio-group/radio-group.js";
import "@shoelace-style/shoelace/dist/components/radio-button/radio-button.js";
Expand Down
2 changes: 1 addition & 1 deletion moq-web/src/element/watch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type BackendState = Rust.BackendState;
// Create a new worker instance that is shared between all instances of the Watch class.
// We wait until the worker is fully initialized before we return the proxy.
const worker: Promise<Comlink.Remote<Bridge>> = new Promise((resolve) => {
const worker = new Worker(new URL("./bridge", import.meta.url), {
const worker = new Worker(new URL("../watch/bridge", import.meta.url), {
type: "module",
});
worker.addEventListener(
Expand Down