@openapi-typescript-infra/service 4.8.1 → 4.8.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.8.2](https://github.com/openapi-typescript-infra/service/compare/v4.8.1...v4.8.2) (2023-11-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **make:** use yarn to run prettier ([a8b436d](https://github.com/openapi-typescript-infra/service/commit/a8b436d2d100df34021f529451c32ddb7e05bf60))
7
+
1
8
  ## [4.8.1](https://github.com/openapi-typescript-infra/service/compare/v4.8.0...v4.8.1) (2023-11-11)
2
9
 
3
10
 
package/Makefile CHANGED
@@ -49,7 +49,7 @@ src/generated/service/index.ts: $(shell find api -type f)
49
49
  $(MAKE) bundlespec SERVICE_NAME=$(SERVICE_NAME) BUNDLE_OUTPUT=$(BUNDLE_OUTPUT)
50
50
  yarn dlx openapi-typescript-express $(BUNDLE_OUTPUT)/openapi-spec.json \
51
51
  --output ./src/generated/service/index.ts
52
- ./node_modules/.bin/prettier ./src/generated/service/index.ts --write
52
+ yarn prettier ./src/generated/service/index.ts --write
53
53
  rm -rf $(TMP)
54
54
 
55
55
  # Config schema generation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openapi-typescript-infra/service",
3
- "version": "4.8.1",
3
+ "version": "4.8.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": {