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

chore: update references to deno_std to use JSR #23239

Merged
merged 6 commits into from
Apr 10, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
maybe fix
  • Loading branch information
iuioiua committed Apr 8, 2024
commit 2809624f7f3fc5dad22800834cc5d096a87eb4f7
32 changes: 16 additions & 16 deletions cli/tsc/dts/lib.deno.ns.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ declare namespace Deno {
* Examples:
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.test({
* name: "inherit",
Expand All @@ -589,7 +589,7 @@ declare namespace Deno {
* ```
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.test({
* name: "true",
Expand All @@ -604,7 +604,7 @@ declare namespace Deno {
* ```
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.test({
* name: "false",
Expand All @@ -619,7 +619,7 @@ declare namespace Deno {
* ```
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.test({
* name: "localhost:8080",
Expand Down Expand Up @@ -848,7 +848,7 @@ declare namespace Deno {
* `fn` can be async if required.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.test({
* name: "example test",
Expand Down Expand Up @@ -889,7 +889,7 @@ declare namespace Deno {
* `fn` can be async if required.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.test({
* name: "example test",
Expand Down Expand Up @@ -926,7 +926,7 @@ declare namespace Deno {
* `fn` can be async if required.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.test("My test description", () => {
* assertEquals("hello", "hello");
Expand All @@ -952,7 +952,7 @@ declare namespace Deno {
* `fn` can be async if required. Declared function must have a name.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.test(function myTestName() {
* assertEquals("hello", "hello");
Expand Down Expand Up @@ -1002,7 +1002,7 @@ declare namespace Deno {
* `fn` can be async if required.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.test(
* {
Expand Down Expand Up @@ -1040,7 +1040,7 @@ declare namespace Deno {
* `fn` can be async if required. Declared function must have a name.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.test(
* { permissions: { read: true } },
Expand Down Expand Up @@ -1263,7 +1263,7 @@ declare namespace Deno {
* will await resolution to consider the test complete.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.bench({
* name: "example test",
Expand Down Expand Up @@ -1302,7 +1302,7 @@ declare namespace Deno {
* will await resolution to consider the test complete.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.bench("My test description", () => {
* assertEquals("hello", "hello");
Expand Down Expand Up @@ -1330,7 +1330,7 @@ declare namespace Deno {
* will await resolution to consider the test complete.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.bench(function myTestName() {
* assertEquals("hello", "hello");
Expand All @@ -1355,7 +1355,7 @@ declare namespace Deno {
* will await resolution to consider the test complete.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.bench(
* "My test description",
Expand Down Expand Up @@ -1392,7 +1392,7 @@ declare namespace Deno {
* will await resolution to consider the test complete.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.bench(
* { name: "My test description", permissions: { read: true } },
Expand Down Expand Up @@ -1426,7 +1426,7 @@ declare namespace Deno {
* will await resolution to consider the test complete.
*
* ```ts
* import { assertEquals } from "jsr:@std/assert/assert-equals";
* import { assertEquals } from "jsr:@std/assert";
*
* Deno.bench(
* { permissions: { read: true } },
Expand Down
Loading