Skip to content

Commit

Permalink
chore(deps): update deps and devDeps
Browse files Browse the repository at this point in the history
  • Loading branch information
cesconix committed Jun 7, 2024
1 parent d8d8119 commit 30d8e61
Show file tree
Hide file tree
Showing 17 changed files with 728 additions and 1,000 deletions.
3 changes: 2 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

pnpm lint-staged
pnpm lint
pnpm format
4 changes: 2 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
},
"javascript": {
"formatter": {
"trailingComma": "none",
"trailingCommas": "none",
"semicolons": "asNeeded"
}
},
"files": {
"ignoreUnknown": true,
"ignore": ["node_modules/**", "**/dist", "cache/**"]
"ignore": ["node_modules/**", "**/dist", "cache/**", "coverage/**"]
}
}
2 changes: 1 addition & 1 deletion examples/create-server-example/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const genericServer = Fastify({
transport: {
targets: [
{
target: "pino-pinorama-transport",
target: "pinorama-transport",
options: {
// url: "http://localhost:6200/my_pinorama_server"
url: "http://localhost:6200"
Expand Down
2 changes: 1 addition & 1 deletion examples/create-server-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"dependencies": {
"@fastify/one-line-logger": "^1.3.0",
"fastify": "^4.26.2",
"pino-pinorama-transport": "workspace:*",
"pinorama-transport": "workspace:*",
"pinorama-server": "workspace:*"
}
}
2 changes: 1 addition & 1 deletion examples/fastify-example/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const fastify = Fastify({
transport: {
targets: [
{
target: "pino-pinorama-transport",
target: "pinorama-transport",
options: {
url: "http://localhost:6200/my_pinorama_server"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/fastify-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"dependencies": {
"@fastify/one-line-logger": "^1.3.0",
"fastify": "^4.26.2",
"pino-pinorama-transport": "workspace:*",
"pinorama-transport": "workspace:*",
"pinorama-server": "workspace:*"
}
}
3 changes: 0 additions & 3 deletions lint-staged.config.cjs

This file was deleted.

7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,15 @@
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:release": "changeset publish",
"prepare": "husky install"
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@biomejs/biome": "^1.8.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"turbo": "^1.13.3"
"turbo": "^2.0.3"
},
"packageManager": "pnpm@9",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/pinorama-studio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"fastify": "^4.26.2",
"minimist": "^1.2.8",
"open": "^10.1.0",
"pino-pinorama-transport": "workspace:*",
"pinorama-transport": "workspace:*",
"pinorama-server": "workspace:*",
"preact": "^10.20.2"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "pino-pinorama-transport",
"name": "pinorama-transport",
"version": "0.1.0",
"description": "load pino logs into Pinorama",
"type": "module",
Expand All @@ -8,9 +8,7 @@
"bin": {
"pino-pinorama": "./dist/cli.mjs"
},
"files": [
"dist"
],
"files": ["dist"],
"scripts": {
"test": "vitest",
"test:cov": "vitest run --coverage",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 30d8e61

Please sign in to comment.