fix(effect-validator): add a build command to `package.json` at the top (#657)

* fix(effect-validator): add a build command to `package.json` at the top

* add chageset
pull/658/head
Yusuke Wada 2024-07-21 18:18:37 +09:00 committed by GitHub
parent ab1b831e1a
commit 8cf5bf0055
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,5 @@
---
'@hono/effect-validator': patch
---
fix: add a build command to `package.json` at the top

View File

@ -33,6 +33,7 @@
"build:oidc-auth": "yarn workspace @hono/oidc-auth build", "build:oidc-auth": "yarn workspace @hono/oidc-auth build",
"build:node-ws": "yarn workspace @hono/node-ws build", "build:node-ws": "yarn workspace @hono/node-ws build",
"build:react-compat": "yarn workspace @hono/react-compat build", "build:react-compat": "yarn workspace @hono/react-compat build",
"build:effect-validator": "yarn workspace @hono/effect-validator build",
"build": "run-p 'build:*'", "build": "run-p 'build:*'",
"lint": "eslint 'packages/**/*.{ts,tsx}'", "lint": "eslint 'packages/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix 'packages/**/*.{ts,tsx}'", "lint:fix": "eslint --fix 'packages/**/*.{ts,tsx}'",
@ -64,4 +65,4 @@
"typescript": "^5.2.2" "typescript": "^5.2.2"
}, },
"packageManager": "yarn@4.0.2" "packageManager": "yarn@4.0.2"
} }