Skip to content

Commit 5205d1d

Browse files
committed
Merge branch 'main' into feat/i18next-middleware
2 parents ac73fce + 61cd9b6 commit 5205d1d

19 files changed

+1049
-79
lines changed

Diff for: .github/workflows/ci-event-emitter.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: ci-event-emitter
2+
on:
3+
push:
4+
branches: [main]
5+
paths:
6+
- 'packages/event-emitter/**'
7+
pull_request:
8+
branches: ['*']
9+
paths:
10+
- 'packages/event-emitter/**'
11+
12+
jobs:
13+
ci:
14+
runs-on: ubuntu-latest
15+
defaults:
16+
run:
17+
working-directory: ./packages/event-emitter
18+
steps:
19+
- uses: actions/checkout@v4
20+
- uses: actions/setup-node@v4
21+
with:
22+
node-version: 20.x
23+
- run: yarn install --frozen-lockfile
24+
- run: yarn build
25+
- run: yarn test

Diff for: .github/workflows/ci-hello.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 18.x
22+
node-version: 20.x
2323
- run: yarn install --frozen-lockfile
2424
- run: yarn build
2525
- run: yarn test

Diff for: package.json

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
"build:typia-validator": "yarn workspace @hono/typia-validator build",
2525
"build:swagger-ui": "yarn workspace @hono/swagger-ui build",
2626
"build:esbuild-transpiler": "yarn workspace @hono/esbuild-transpiler build",
27+
"build:event-emitter": "yarn workspace @hono/event-emitter build",
2728
"build:oauth-providers": "yarn workspace @hono/oauth-providers build",
2829
"build:react-renderer": "yarn workspace @hono/react-renderer build",
2930
"build:auth-js": "yarn workspace @hono/auth-js build",

Diff for: packages/event-emitter/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @hono/event-emitter
2+
3+
## 1.0.0
4+
5+
### Major Changes
6+
7+
- [#615](https://github.com/honojs/middleware/pull/615) [`53b4f331906f3da57da81e87d461889d0aff5cb4`](https://github.com/honojs/middleware/commit/53b4f331906f3da57da81e87d461889d0aff5cb4) Thanks [@DavidHavl](https://github.com/DavidHavl)! - Full release of Event Emitter middleware for Hono

0 commit comments

Comments
 (0)