@openapi-typescript-infra/service 4.3.1 → 4.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [4.3.2](https://github.com/openapi-typescript-infra/service/compare/v4.3.1...v4.3.2) (2023-10-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **make:** point to generate schema script properly ([2c3c824](https://github.com/openapi-typescript-infra/service/commit/2c3c824e08837d1323f7e09a745ca6bb39ea3b8f))
7
+
1
8
  ## [4.3.1](https://github.com/openapi-typescript-infra/service/compare/v4.3.0...v4.3.1) (2023-10-19)
2
9
 
3
10
 
package/Makefile CHANGED
@@ -66,7 +66,7 @@ config-schema: src/generated/config-schema.ts
66
66
  src/generated/config-schema.ts: $(CONFIG_SOURCE)
67
67
  mkdir -p src/generated
68
68
  echo "Building config schema"
69
- node ./build/bin/generate-config-schema.js \
69
+ yarn generate-config-schema \
70
70
  --source $(CONFIG_SOURCE) \
71
71
  --type $(CONFIG_TYPE) \
72
72
  --output src/generated/config-schema.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openapi-typescript-infra/service",
3
- "version": "4.3.1",
3
+ "version": "4.3.2",
4
4
  "description": "An opinionated framework for building configuration driven services - web, api, or ob. Uses OpenAPI, pino logging, express, confit, Typescript and vitest.",
5
5
  "main": "build/index.js",
6
6
  "scripts": {