Skip to content

Commit 5e76f07

Browse files
committed
chore: bump biome 1.9.4
1 parent ef0bbfd commit 5e76f07

File tree

3 files changed

+33
-33
lines changed

3 files changed

+33
-33
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ repos:
66
# Those are not supported by biomejs yet, refer https://biomejs.dev/internals/language-support/
77
types_or: [html, css, markdown]
88
- repo: https://github.com/biomejs/pre-commit
9-
rev: "v0.1.0" # Use the sha / tag you want to point at
9+
rev: "v0.6.1" # Use the sha / tag you want to point at
1010
hooks:
1111
- id: biome-check
12-
additional_dependencies: ["@biomejs/biome@1.6.3"]
12+
additional_dependencies: ["@biomejs/biome@1.9.4"]

README.md

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
## Prerequisites
2020

21-
- node >= 18.17.x
21+
- node >= 18.17.x
2222

2323
## Init new project
2424

@@ -28,14 +28,14 @@ npx degit jellydn/moleculer-typescript-template [PROJECT-NAME]
2828

2929
## Features
3030

31-
- ⚡️ Progressive microservices framework for Node.js.
32-
[Moleculer](https://moleculer.services/) with [Typescript](https://www.typescriptlang.org/) template
33-
- 📦 [hygen](http://www.hygen.io/) - The scalable code generator that saves you time.
34-
- 🦾 [pino](https://getpino.io) - super fast, all natural json logger
35-
- 🔥 [swagger-jsdoc](https://github.com/Surnet/swagger-jsdoc/blob/v6/docs/README.md) - Generates swagger/openapi specification based on jsDoc comments and YAML files.
36-
-[moleculer-zod-validator](https://github.com/TheAppleFreak/moleculer-zod-validator) - A validator for the Moleculer microservice framework to allow the use of [Zod](https://zod.dev/).
37-
- 🔏 [asteasolutions/zod-to-openapi](https://github.com/asteasolutions/zod-to-openapi#defining-schemas) - A library that generates OpenAPI (Swagger) docs from Zod schemas.
38-
- 🪄 [hey-api/openapi-ts](https://github.com/hey-api/openapi-ts) - Turn your OpenAPI specification into a beautiful TypeScript client.
31+
- ⚡️ Progressive microservices framework for Node.js.
32+
[Moleculer](https://moleculer.services/) with [Typescript](https://www.typescriptlang.org/) template
33+
- 📦 [hygen](http://www.hygen.io/) - The scalable code generator that saves you time.
34+
- 🦾 [pino](https://getpino.io) - super fast, all natural json logger
35+
- 🔥 [swagger-jsdoc](https://github.com/Surnet/swagger-jsdoc/blob/v6/docs/README.md) - Generates swagger/openapi specification based on jsDoc comments and YAML files.
36+
- [moleculer-zod-validator](https://github.com/TheAppleFreak/moleculer-zod-validator) - A validator for the Moleculer microservice framework to allow the use of [Zod](https://zod.dev/).
37+
- 🔏 [asteasolutions/zod-to-openapi](https://github.com/asteasolutions/zod-to-openapi#defining-schemas) - A library that generates OpenAPI (Swagger) docs from Zod schemas.
38+
- 🪄 [hey-api/openapi-ts](https://github.com/hey-api/openapi-ts) - Turn your OpenAPI specification into a beautiful TypeScript client.
3939

4040
## Install
4141

@@ -63,10 +63,10 @@ pnpm cli --ns api
6363

6464
In the terminal, try the following commands:
6565

66-
- `nodes` - List all connected nodes.
67-
- `actions` - List all registered service actions.
68-
- `call greeter.hello` - Call the `greeter.hello` action.
69-
- `call greeter.welcome --username dunghd` - Call the `greeter.welcome` action with the `username` parameter.
66+
- `nodes` - List all connected nodes.
67+
- `actions` - List all registered service actions.
68+
- `call greeter.hello` - Call the `greeter.hello` action.
69+
- `call greeter.welcome --username dunghd` - Call the `greeter.welcome` action with the `username` parameter.
7070

7171
![https://gyazo.com/3aca1c4e1992ad1c10da8060d7e21a6c.gif](https://gyazo.com/3aca1c4e1992ad1c10da8060d7e21a6c.gif)
7272

@@ -122,24 +122,24 @@ This template comes with two GitHub Actions that handle automatically deploying
122122

123123
Prior to your first deployment, you'll need to do a few things:
124124

125-
- [Install Fly](https://fly.io/docs/getting-started/installing-flyctl/)
125+
- [Install Fly](https://fly.io/docs/getting-started/installing-flyctl/)
126126

127-
- Sign up and log in to Fly
127+
- Sign up and log in to Fly
128128

129129
```sh
130130
fly auth signup
131131
```
132132

133-
- Create two apps on Fly, one for staging and one for production:
133+
- Create two apps on Fly, one for staging and one for production:
134134

135135
```sh
136136
fly create moleculer-typescript
137137
fly create moleculer-typescript-staging
138138
```
139139

140-
- Create a new [GitHub Repository](https://repo.new)
140+
- Create a new [GitHub Repository](https://repo.new)
141141

142-
- Add a `FLY_API_TOKEN` to your GitHub repo. To do this, go to your user settings on Fly and create a new [token](https://web.fly.io/user/personal_access_tokens/new), then add it to [your repo secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets) with the name `FLY_API_TOKEN`.
142+
- Add a `FLY_API_TOKEN` to your GitHub repo. To do this, go to your user settings on Fly and create a new [token](https://web.fly.io/user/personal_access_tokens/new), then add it to [your repo secrets](https://docs.github.com/en/actions/security-guides/encrypted-secrets) with the name `FLY_API_TOKEN`.
143143

144144
Now that every is set up you can commit and push your changes to your repo. Every commit to your `main` branch will trigger a deployment to your production environment, and every commit to your `dev` branch will trigger a deployment to your staging environment.
145145

@@ -149,18 +149,18 @@ We use GitHub Actions for continuous integration and deployment. Anything that g
149149

150150
## Useful links
151151

152-
- Moleculer website: https://moleculer.services/
153-
- Moleculer Documentation: https://moleculer.services/docs/0.14/
152+
- Moleculer website: https://moleculer.services/
153+
- Moleculer Documentation: https://moleculer.services/docs/0.14/
154154

155155
## NPM scripts
156156

157-
- `pnpm dev`: Start development mode (load all services locally with hot-reload & watch)
158-
- `pnpm start`: Start production mode (set `SERVICES` env variable to load certain services)
159-
- `pnpm cli`: Start a CLI and connect to production. Don't forget to set production namespace with `--ns` argument in script
160-
- `pnpm ci`: Run continuous test mode with watching
161-
- `pnpm test`: Run tests & generate coverage report
162-
- `pnpm dc:up`: Start the stack with Docker Compose
163-
- `pnpm dc:down`: Stop the stack with Docker Compose
157+
- `pnpm dev`: Start development mode (load all services locally with hot-reload & watch)
158+
- `pnpm start`: Start production mode (set `SERVICES` env variable to load certain services)
159+
- `pnpm cli`: Start a CLI and connect to production. Don't forget to set production namespace with `--ns` argument in script
160+
- `pnpm ci`: Run continuous test mode with watching
161+
- `pnpm test`: Run tests & generate coverage report
162+
- `pnpm dc:up`: Start the stack with Docker Compose
163+
- `pnpm dc:down`: Stop the stack with Docker Compose
164164
165165
## Pre-commit hooks
166166
@@ -180,9 +180,9 @@ pre-commit run --all-files
180180
181181
👤 **Dung Huynh**
182182
183-
- Website: https://productsway.com/
184-
- Twitter: [@jellydn](https://twitter.com/jellydn)
185-
- Github: [@jellydn](https://github.com/jellydn)
183+
- Website: https://productsway.com/
184+
- Twitter: [@jellydn](https://twitter.com/jellydn)
185+
- Github: [@jellydn](https://github.com/jellydn)
186186
187187
## Show your support
188188

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.8.0/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
33
"organizeImports": {
44
"enabled": true
55
},

0 commit comments

Comments
 (0)