Skip to content

Commit

Permalink
build: updated to drake v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
srackham committed Feb 8, 2024
1 parent d697d18 commit 183d7ef
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Drakefile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
task,
updateFile,
writeFile,
} from "https://deno.land/x/drake@v1.6.0/mod.ts";
} from "https://deno.land/x/drake@v1.7.0/mod.ts";

const isWindows = Deno.build.os === "windows";

Expand Down Expand Up @@ -499,7 +499,7 @@ task("fmt", [], async function () {

desc("Lint source files");
task("lint", [], async function () {
await sh(`deno lint --unstable src/deno/ test/ Drakefile.ts`);
await sh(`deno lint src/deno/ test/ Drakefile.ts`);
});

desc("Build and validate other Rimu ports");
Expand Down
4 changes: 2 additions & 2 deletions test/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export {
env,
readFile,
shCapture,
} from "https://deno.land/x/drake@v1.5.2/lib.ts";
export type { ShOutput } from "https://deno.land/x/drake@v1.5.2/lib.ts";
} from "https://deno.land/x/drake@v1.7.0/lib.ts";
export type { ShOutput } from "https://deno.land/x/drake@v1.7.0/lib.ts";
2 changes: 1 addition & 1 deletion test/validate-rimu-ports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
makeDir,
readFile,
sh,
} from "https://deno.land/x/drake@v1.5.2/lib.ts";
} from "https://deno.land/x/drake@v1.7.0/lib.ts";

env("--abort-exits", true);

Expand Down

0 comments on commit 183d7ef

Please sign in to comment.