Skip to content

Commit e61db68

Browse files
committed
chore: tweak descriptions
1 parent cf44afd commit e61db68

File tree

6 files changed

+41
-8
lines changed

6 files changed

+41
-8
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ Internationalization server middleware & utilities
88

99
This repository is monorepo for the below packages:
1010

11-
| Package | Description | NPM |
12-
| -------------------------------- | ------------------------------------------------------------------------- | ------------------------------------------------------------- |
13-
| [`@intlify/h3`](packages/h3) | Internationalization middleware & utilities for [H3](https://h3.dev/) | [![npm version][npm-version-h3-src]][npm-version-h3-href] |
14-
| [`@intlify/hono`](packages/hono) | Internationalization middleware & utilities for [Hono](https://hono.dev/) | [![npm version][npm-version-hono-src]][npm-version-hono-href] |
11+
| Package | Description | NPM |
12+
| ------------------------------------ | -------------------------------------------------------- | ----------------------------------------------------------------- |
13+
| [`@intlify/h3`](packages/h3) | Internationalization for [H3](https://h3.dev/) | [![npm version][npm-version-h3-src]][npm-version-h3-href] |
14+
| [`@intlify/hono`](packages/hono) | Internationalization for [Hono](https://hono.dev/) | [![npm version][npm-version-hono-src]][npm-version-hono-href] |
15+
| [`@intlify/elysia`](packages/elysia) | Internationalization for [Elysia](https://elysiajs.com/) | [![npm version][npm-version-elysia-src]][npm-version-elysia-href] |
1516

1617
## 🙌 Contributing guidelines
1718

@@ -37,5 +38,7 @@ The development of `srvmid` is supported by my OSS sponsors!
3738
[npm-version-h3-href]: https://npmjs.com/package/@intlify/h3
3839
[npm-version-hono-src]: https://img.shields.io/npm/v/@intlify/hono?style=flat&colorA=18181B&colorB=FFAD33
3940
[npm-version-hono-href]: https://npmjs.com/package/@intlify/hono
41+
[npm-version-elysia-src]: https://img.shields.io/npm/v/@intlify/elysia?style=flat&colorA=18181B&colorB=FFAD33
42+
[npm-version-elysia-href]: https://npmjs.com/package/@intlify/elysia
4043
[ci-src]: https://github.com/intlify/srvmid/actions/workflows/ci.yml/badge.svg
4144
[ci-href]: https://github.com/intlify/srvmid/actions/workflows/ci.yml

packages/elysia/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,16 @@ See the [API References](https://github.com/intlify/srvmid/blob/main/packages/el
268268

269269
If you are interested in contributing to `@intlify/elysia`, I highly recommend checking out [the contributing guidelines](https://github.com/intlify/srvmid/blob/main/CONTRIBUTING.md) here. You'll find all the relevant information such as [how to make a PR](https://github.com/intlify/srvmid/blob/main/CONTRIBUTING.md#pull-request-guidelines), [how to setup development](https://github.com/intlify/srvmid/blob/main/CONTRIBUTING.md#development-setup) etc., there.
270270

271+
## 🤝 Sponsors
272+
273+
The development of `srvmid` is supported by my OSS sponsors!
274+
275+
<p align="center">
276+
<a href="https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg">
277+
<img alt="sponsor" src='https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg'/>
278+
</a>
279+
</p>
280+
271281
## ©️ License
272282

273283
[MIT](http://opensource.org/licenses/MIT)

packages/h3/README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![npm downloads][npm-downloads-src]][npm-downloads-href]
55
[![CI][ci-src]][ci-href]
66

7-
Internationalization middleware & utilities for h3 (and therefore also for Nitro, which is using H3)
7+
Internationalization for H3
88

99
<!-- eslint-disable markdown/no-missing-label-refs -- NOTE(kazupon): ignore github alert -->
1010

@@ -378,6 +378,16 @@ See the [API References](https://github.com/intlify/srvmid/blob/main/packages/h3
378378
379379
If you are interested in contributing to `@intlify/h3`, I highly recommend checking out [the contributing guidelines](https://github.com/intlify/srvmid/blob/main/CONTRIBUTING.md) here. You'll find all the relevant information such as [how to make a PR](https://github.com/intlify/srvmid/blob/main/CONTRIBUTING.md#pull-request-guidelines), [how to setup development](https://github.com/intlify/srvmid/blob/main/CONTRIBUTING.md#development-setup)) etc., there.
380380
381+
## 🤝 Sponsors
382+
383+
The development of `srvmid` is supported by my OSS sponsors!
384+
385+
<p align="center">
386+
<a href="https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg">
387+
<img alt="sponsor" src='https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg'/>
388+
</a>
389+
</p>
390+
381391
## ©️ License
382392
383393
[MIT](http://opensource.org/licenses/MIT)

packages/h3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intlify/h3",
3-
"description": "Internationalization middleware & utilities for h3",
3+
"description": "Internationalization for H3",
44
"version": "2.0.0-alpha.7",
55
"author": {
66
"name": "kazuya kawaguchi",

packages/hono/README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![npm downloads][npm-downloads-src]][npm-downloads-href]
55
[![CI][ci-src]][ci-href]
66

7-
Internationalization middleware & utilities for [Hono](https://hono.dev/)
7+
Internationalization for [Hono](https://hono.dev/)
88

99
## 🌟 Features
1010

@@ -337,6 +337,16 @@ See the [API References](https://github.com/intlify/srvmid/blob/main/packages/ho
337337
338338
If you are interested in contributing to `@intlify/hono`, I highly recommend checking out [the contributing guidelines](https://github.com/intlify/srvmid/blob/main/CONTRIBUTING.md) here. You'll find all the relevant information such as [how to make a PR](https://github.com/intlify/srvmid/blob/main/CONTRIBUTING.md#pull-request-guidelines), [how to setup development](https://github.com/intlify/srvmid/blob/main/CONTRIBUTING.md#development-setup) etc., there.
339339
340+
## 🤝 Sponsors
341+
342+
The development of `srvmid` is supported by my OSS sponsors!
343+
344+
<p align="center">
345+
<a href="https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg">
346+
<img alt="sponsor" src='https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg'/>
347+
</a>
348+
</p>
349+
340350
## ©️ License
341351
342352
[MIT](http://opensource.org/licenses/MIT)

packages/hono/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@intlify/hono",
3-
"description": "Internationalization middleware & utilities for Hono",
3+
"description": "Internationalization for Hono",
44
"version": "2.0.0-alpha.7",
55
"author": {
66
"name": "kazuya kawaguchi",

0 commit comments

Comments
 (0)