Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): update dependencies #113

Merged
merged 5 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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