Skip to content
Merged
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 Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM denoland/deno:alpine-2.5.6@sha256:b9c7668c78fe393893f00b0fc8ba3d0f2e1bbb8f891a79a963b3b713ab110767
FROM denoland/deno:alpine-2.6.3@sha256:d59199e51eabbdd41620fed54d6ba576ddce59f072300165193a87a303333106

# Label the container
LABEL maintainer="Justin Chase <justin.chase@optum.com>"
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"jsonc-parser": "npm:jsonc-parser@^3.2.1",
"semver": "jsr:@std/semver@^1.0.6",
"path": "jsr:@std/path@^1.0.6",
"assert": "jsr:@std/assert@^1.0.6",
"assert": "jsr:@std/assert@^1.0.14",
"testing/bdd": "jsr:@std/testing@^1.0.3/bdd",
"testing/mock": "jsr:@std/testing@^1.0.3/mock",
"yaml": "jsr:@std/yaml@^1.0.5",
Expand Down
31 changes: 23 additions & 8 deletions deno.lock

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

2 changes: 1 addition & 1 deletion main.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it } from "testing/bdd";
import { assertEquals } from "assert";
import { assertEquals } from "@std/assert";

describe("main", () => {
it("MAIN00 - filters empty arguments", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/options.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it } from "testing/bdd";
import { assertEquals } from "assert";
import { assertEquals } from "@std/assert";
import { build, config, json, output, prerelease } from "./options.ts";

describe("options", () => {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/set.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
returnsNext,
stub,
} from "testing/mock";
import { assertRejects } from "assert";
import { assertRejects } from "@std/assert";
import type { Arguments } from "yargs";
import { set } from "./set.ts";
import { testContext } from "../util/testContext.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/post.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { parse } from "semver";
import { assertEquals } from "assert";
import { assertEquals } from "@std/assert";
import { resolvesNext, stub } from "testing/mock";
import * as YAML from "yaml";
import { IContext } from "../context.ts";
Expand Down
2 changes: 1 addition & 1 deletion src/util/increment.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assertEquals } from "assert";
import { assertEquals } from "@std/assert";
import { format, parse } from "semver";
import { increment, IncrementKind, IncrementOptions } from "./increment.ts";

Expand Down
2 changes: 1 addition & 1 deletion src/util/version.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { format, parse } from "semver";
import { assertEquals, AssertionError, assertRejects } from "assert";
import { assertEquals, AssertionError, assertRejects } from "@std/assert";
import { assertSpyCall, resolvesNext, stub } from "testing/mock";
import { IContext } from "../context.ts";
import { printVersion, readVersionFile, writeVersionFile } from "./version.ts";
Expand Down
Loading