Skip to content

Commit

Permalink
Merge pull request #113 from hasundue/denopendabot
Browse files Browse the repository at this point in the history
build(deps): update dependencies
  • Loading branch information
denopendabot[bot] committed Dec 1, 2023
2 parents f9d3acc + 3fa69d2 commit c2ea12b
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.38.0 # @denopendabot denoland/deno
deno-version: v1.38.4 # @denopendabot denoland/deno

- name: Format
run: deno fmt --check
Expand Down Expand Up @@ -54,12 +54,12 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.38.0 # @denopendabot denoland/deno
deno-version: v1.38.4 # @denopendabot denoland/deno

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: v21.1.0 # @denopendabot nodejs/node
node-version: v21.3.0 # @denopendabot nodejs/node

- name: Install Wrangler
run: npm install -g wrangler@3.6.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<!-- deno-fmt-ignore-start -->

[![Test](https://github.com/hasundue/brawler/actions/workflows/test.yml/badge.svg)](https://github.com/hasundue/brawler/actions/workflows/test.yml)
![Deno](https://img.shields.io/badge/Deno-v1.38.0-blue?logo=deno) <!-- @denopendabot denoland/deno -->
![Node](https://img.shields.io/badge/Node-v21.1.0-blue?logo=node) <!-- @denopendabot nodejs/node -->
![Deno](https://img.shields.io/badge/Deno-v1.38.4-blue?logo=deno) <!-- @denopendabot denoland/deno -->
![Node](https://img.shields.io/badge/Node-v21.3.0-blue?logo=node) <!-- @denopendabot nodejs/node -->
![Wrangler](https://img.shields.io/badge/Wrangler-3.6.0-blue?logo=cloudflare)

Brawler is a wrapper of [Wrangler](https://developers.cloudflare.com/workers/wrangler/get-started) to develop and deploy
Expand Down
2 changes: 1 addition & 1 deletion examples/hono/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Hono } from "npm:hono@3.9.2";
import { Hono } from "npm:hono@3.10.3";

const app = new Hono();

Expand Down
8 changes: 4 additions & 4 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as log from "https://deno.land/std@0.205.0/log/mod.ts";
import { dirname, join } from "https://deno.land/std@0.205.0/path/mod.ts";
import { signal } from "https://deno.land/std@0.205.0/signal/mod.ts";
import * as esbuild from "https://deno.land/x/esbuild@v0.19.5/mod.js";
import * as log from "https://deno.land/std@0.208.0/log/mod.ts";
import { dirname, join } from "https://deno.land/std@0.208.0/path/mod.ts";
import { signal } from "https://deno.land/std@0.208.0/signal/mod.ts";
import * as esbuild from "https://deno.land/x/esbuild@0.19.8/mod.js";
import { denoPlugins } from "https://deno.land/x/esbuild_deno_loader@0.8.2/mod.ts";
import { Mutex } from "https://deno.land/x/async@v2.0.2/mutex.ts";

Expand Down
6 changes: 3 additions & 3 deletions test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import {
beforeAll,
describe,
it,
} from "https://deno.land/std@0.205.0/testing/bdd.ts";
} from "https://deno.land/std@0.208.0/testing/bdd.ts";
import {
assertEquals,
assertStringIncludes,
} from "https://deno.land/std@0.205.0/assert/mod.ts";
import { deadline, retry } from "https://deno.land/std@0.205.0/async/mod.ts";
} from "https://deno.land/std@0.208.0/assert/mod.ts";
import { deadline, retry } from "https://deno.land/std@0.208.0/async/mod.ts";
import $ from "https://deno.land/x/dax@0.35.0/mod.ts";

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

0 comments on commit c2ea12b

Please sign in to comment.