Omochice / renovate-config

Shareable configuration for Renovate within Deno project
zlib License
12 stars 0 forks source link

update deps in jsdoc #184

Closed Omochice closed 1 month ago

Omochice commented 1 month ago

Background

Deno v2 has deno test --doc

it has below syntax:

/**
 * ```ts
 * import { assertEquals } from "jsr:@std/assert/equals";
 *
 * assertEquals(add(1, 2), 3);
 * ```
 */
export function add(a: number, b: number) {
  return a + b;
}

I want to update this * import { assertEquals } from "jsr:@std/assert/equals";

ref: https://deno.com/blog/v2.0-release-candidate#doc-tests-with-deno-test---doc

Omochice commented 1 month ago

we can upgrade it already !

Omochice commented 1 month ago

ref: #185