Skip to content

Commit

Permalink
Bump deps - CI Deno runtime to 2.0.4 (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
petruki authored Nov 4, 2024
1 parent a65eff9 commit 25c672b
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 36 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
deno-version: [v1.46.3, v2.0.0]
deno-version: [v1.46.3, v2.0.4]
os: [ ubuntu-latest, windows-latest ]
runs-on: ${{ matrix.os }}
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
Expand Down
64 changes: 36 additions & 28 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.4';
export { existsSync } from 'jsr:@std/fs@1.0.5';
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.6';;
export { assertSpyCalls, spy } from 'jsr:@std/testing@1.0.3/mock';
} from 'jsr:@std/assert@1.0.7';;
export { assertSpyCalls, spy } from 'jsr:@std/testing@1.0.4/mock';
export {
describe,
it,
afterAll,
beforeEach,
beforeAll,
afterEach
} from 'jsr:@std/testing@1.0.3/bdd';
export { delay } from 'jsr:@std/async@1.0.5/delay';
export { existsSync } from 'jsr:@std/fs@1.0.4';
} from 'jsr:@std/testing@1.0.4/bdd';
export { delay } from 'jsr:@std/async@1.0.8/delay';
export { existsSync } from 'jsr:@std/fs@1.0.5';
export * as mf from 'https://deno.land/x/mock_fetch@0.3.0/mod.ts';
2 changes: 1 addition & 1 deletion test/playground/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Switcher, Client } from '../../mod.ts'
import { sleep } from "../helper/utils.ts";

const SWITCHER_KEY = 'MY_SWITCHER';
const apiKey = 'JDJiJDA4JEFweTZjSTR2bE9pUjNJOUYvRy9raC4vRS80Q2tzUnk1d3o1aXFmS2o5eWJmVW11cjR0ODNT';
const apiKey = '[API_KEY]';
const domain = 'Playground';
const component = 'switcher-playground';
const environment = 'default';
Expand Down

0 comments on commit 25c672b

Please sign in to comment.