Skip to content

Commit

Permalink
chore: update dnt to v0.41.0
Browse files Browse the repository at this point in the history
  • Loading branch information
redabacha committed Mar 26, 2024
1 parent 615132a commit fa9c99a
Show file tree
Hide file tree
Showing 4 changed files with 264 additions and 21 deletions.
10 changes: 7 additions & 3 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{
"lock": false,
"exclude": ["CHANGELOG.md", "npm"],
"name": "@reda/remember-promise",
"version": "2.0.2",
"exports": "./mod.ts"
"exports": "./mod.ts",
"exclude": ["CHANGELOG.md", "npm"],
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.0",
"@std/assert": "jsr:@std/assert@^0.220.1",
"@std/testing": "jsr:@std/testing@^0.220.1"
}
}
252 changes: 252 additions & 0 deletions deno.lock

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

18 changes: 4 additions & 14 deletions mod.test.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
import { assertEquals, assertIsError } from "jsr:@std/[email protected]";
import {
afterEach,
beforeEach,
describe,
it,
} from "jsr:@std/[email protected]/bdd";
import {
assertSpyCalls,
returnsNext,
spy,
stub,
} from "jsr:@std/[email protected]/mock";
import { FakeTime } from "jsr:@std/[email protected]/time";
import { assertEquals, assertIsError } from "@std/assert";
import { afterEach, beforeEach, describe, it } from "@std/testing/bdd";
import { assertSpyCalls, returnsNext, spy, stub } from "@std/testing/mock";
import { FakeTime } from "@std/testing/time";
import { rememberPromise, type RememberPromiseOptions } from "./mod.ts";

const createMockPromiseFn = () => {
Expand Down
5 changes: 1 addition & 4 deletions scripts/prepare_release.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import {
build,
emptyDir,
} from "https://raw.githubusercontent.com/denoland/dnt/2d1d120df7f110c510c6d2aa07e9d0886855e182/mod.ts";
import { build, emptyDir } from "@deno/dnt";

const version = Deno.args[0];

Expand Down

0 comments on commit fa9c99a

Please sign in to comment.