Skip to content

Commit

Permalink
chore: upgrade dependencies (#63)
Browse files Browse the repository at this point in the history
Updates all dependencies
* source dependencies (which are all `@std`) to now use
[JSR](https://jsr.io)
* Deno upgraded to `1.44.0`
* CodeCOV upgraded to `v4`
  • Loading branch information
linuxwolf authored Jun 6, 2024
1 parent 70095d7 commit b4a1869
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 43 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches: [main]
env:
DENO_DIR: ./.cache
DENO_VER: "1.39.0"
DENO_VER: "1.44.0"
jobs:
caching:
name: "Cache Updates"
Expand Down Expand Up @@ -74,6 +74,8 @@ jobs:
--lcov --output=coverage/lcov \
coverage
- name: "Report coverage"
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: coverage/lcov
70 changes: 32 additions & 38 deletions deno.lock

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

5 changes: 4 additions & 1 deletion deps/src/asserts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@
* @copyright 2023 Matthew A. Miller
*/

export * from "https://deno.land/[email protected]/testing/asserts.ts";
export * from "jsr:@std/[email protected]/assert";
export * from "jsr:@std/[email protected]/assert-throws";
export * from "jsr:@std/[email protected]/assertion-error";
export * from "jsr:@std/[email protected]/equal";
2 changes: 1 addition & 1 deletion deps/src/mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
* @copyright 2023 Matthew A. Miller
*/

export * from "https://deno.land/std@0.210.0/testing/mock.ts";
export * from "jsr:@std/testing@0.225.1/mock";
2 changes: 1 addition & 1 deletion deps/test/bdd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
* @copyright 2023 Matthew A. Miller
*/

export * from "https://deno.land/std@0.210.0/testing/bdd.ts";
export * from "jsr:@std/testing@0.225.1/bdd";

0 comments on commit b4a1869

Please sign in to comment.