Skip to content

Commit

Permalink
workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
iuioiua committed Feb 6, 2024
1 parent fe13979 commit 9c4a7fe
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/convert_to_jsr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,15 @@ const POSTGRES_JSR_SPECIFIER = `jsr:${denoConfig.name}`;

function toStdJsrSpecifier(
_full: string,
version: string,
_version: string,
module: string,
path: string,
): string {
/**
* @todo(iuioiua) Restore the dynamic use of the `version` argument
* once 0.214.0 is released.
*/
const version = "0.213.1";
return path === "mod"
? `jsr:@std/${module}@${version}`
: `jsr:@std/${module}@${version}/${path}`;
Expand Down

1 comment on commit 9c4a7fe

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No typecheck tests failure

This error was most likely caused by incorrect type stripping from the SWC crate

Please report the following failure to https://github.com/denoland/deno with a reproduction of the current commit

Failure log

Please sign in to comment.