Skip to content

Commit

Permalink
Bump Deno to 2.1.10 and deps (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
petruki authored Feb 16, 2025
1 parent 7522aa3 commit 556b703
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
strategy:
fail-fast: false
matrix:
deno-version: [v1.46.3, v2.1.3]
deno-version: [v1.46.3, v2.1.10]
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
Expand Down
7 changes: 7 additions & 0 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 src/deps.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { existsSync } from 'jsr:@std/fs@1.0.6';
export { existsSync } from 'jsr:@std/fs@1.0.13';
10 changes: 5 additions & 5 deletions test/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ export {
assertExists,
assertNotEquals,
assertArrayIncludes
} from 'jsr:@std/assert@1.0.9';;
export { assertSpyCalls, spy } from 'jsr:@std/testing@1.0.6/mock';
} from 'jsr:@std/assert@1.0.11';;
export { assertSpyCalls, spy } from 'jsr:@std/testing@1.0.9/mock';
export {
describe,
it,
afterAll,
beforeEach,
beforeAll,
afterEach
} from 'jsr:@std/testing@1.0.6/bdd';
export { delay } from 'jsr:@std/async@1.0.9/delay';
export { existsSync } from 'jsr:@std/fs@1.0.6';
} from 'jsr:@std/testing@1.0.9/bdd';
export { delay } from 'jsr:@std/async@1.0.10/delay';
export { existsSync } from 'jsr:@std/fs@1.0.13';
export * as mf from 'https://deno.land/x/mock_fetch@0.3.0/mod.ts';

0 comments on commit 556b703

Please sign in to comment.