From 97f221fd320b8c7d00c1d0395e0f4b8553502660 Mon Sep 17 00:00:00 2001 From: petruki <31597636+petruki@users.noreply.github.com> Date: Sun, 6 Oct 2024 16:30:23 -0700 Subject: [PATCH] Bump std/fs@1.0.4 --- .github/FUNDING.yml | 3 +++ .github/workflows/master.yml | 4 ++-- deno.lock | 13 ++++++++++++- src/deps.ts | 2 +- test/deps.ts | 8 ++++---- 5 files changed, 22 insertions(+), 8 deletions(-) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..0d317fd --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,3 @@ +patreon: switcherapi +ko_fi: petruki +github: [petruki] \ No newline at end of file diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 5bfa130..c441d7e 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -18,10 +18,10 @@ jobs: with: fetch-depth: 0 - - name: Setup Deno v1.46.2 + - name: Setup Deno v1.46.3 uses: denoland/setup-deno@v1 with: - deno-version: v1.46.2 + deno-version: v1.46.3 - name: Setup LCOV run: sudo apt install -y lcov diff --git a/deno.lock b/deno.lock index 255430f..5c470df 100644 --- a/deno.lock +++ b/deno.lock @@ -3,7 +3,9 @@ "packages": { "specifiers": { "jsr:@std/fs@1.0.2": "jsr:@std/fs@1.0.2", - "jsr:@std/path@^1.0.3": "jsr:@std/path@1.0.3" + "jsr:@std/fs@1.0.4": "jsr:@std/fs@1.0.4", + "jsr:@std/path@^1.0.3": "jsr:@std/path@1.0.3", + "jsr:@std/path@^1.0.6": "jsr:@std/path@1.0.6" }, "jsr": { "@std/fs@1.0.2": { @@ -12,8 +14,17 @@ "jsr:@std/path@^1.0.3" ] }, + "@std/fs@1.0.4": { + "integrity": "2907d32d8d1d9e540588fd5fe0ec21ee638134bd51df327ad4e443aaef07123c", + "dependencies": [ + "jsr:@std/path@^1.0.6" + ] + }, "@std/path@1.0.3": { "integrity": "cd89d014ce7eb3742f2147b990f6753ee51d95276bfc211bc50c860c1bc7df6f" + }, + "@std/path@1.0.6": { + "integrity": "ab2c55f902b380cf28e0eec501b4906e4c1960d13f00e11cfbcd21de15f18fed" } } }, diff --git a/src/deps.ts b/src/deps.ts index 2ce8ae0..ad21a04 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -1 +1 @@ -export { existsSync } from 'jsr:@std/fs@1.0.2'; +export { existsSync } from 'jsr:@std/fs@1.0.4'; diff --git a/test/deps.ts b/test/deps.ts index f1796c3..abb517c 100644 --- a/test/deps.ts +++ b/test/deps.ts @@ -6,7 +6,7 @@ export { assertExists, assertNotEquals, assertArrayIncludes -} from 'jsr:@std/assert@1.0.3';; +} from 'jsr:@std/assert@1.0.6';; export { assertSpyCalls, spy } from 'jsr:@std/testing@1.0.1/mock'; export { describe, @@ -15,7 +15,7 @@ export { beforeEach, beforeAll, afterEach -} from 'jsr:@std/testing@1.0.1/bdd'; -export { delay } from 'jsr:@std/async@1.0.4/delay'; -export { existsSync } from 'jsr:@std/fs@1.0.2'; +} 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'; export * as mf from 'https://deno.land/x/mock_fetch@0.3.0/mod.ts'; \ No newline at end of file