Skip to content
Open
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
2 changes: 1 addition & 1 deletion auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ export async function authedFetch(
`token=${auth}; deno_auth_ghid=force`,
);

const url = new URL(endpoint, context.endpoint);
const url = new URL(`${context.endpoint}/${endpoint}`);

let fallbackBody: ReadableStream | undefined;
if (init.body instanceof ReadableStream) {
Expand Down
9 changes: 9 additions & 0 deletions lib/rs_lib.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// @generated file from wasmbuild -- do not edit
// deno-lint-ignore-file
// deno-fmt-ignore-file

export function resolve_config(
root_path: string,
ignore_paths: string[],
allow_node_modules: boolean,
): any;
Loading
Loading