@openapi-typescript-infra/service 4.8.4 → 4.8.6

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/Makefile +3 -3
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [4.8.6](https://github.com/openapi-typescript-infra/service/compare/v4.8.5...v4.8.6) (2023-11-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **make:** fix tabs ([a67d33a](https://github.com/openapi-typescript-infra/service/commit/a67d33abbe7bf2f98f3fafea4d9dab6b835ab86d))
7
+
8
+ ## [4.8.5](https://github.com/openapi-typescript-infra/service/compare/v4.8.4...v4.8.5) (2023-11-20)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **typia:** use a local copy instead of npx ([3f1f3eb](https://github.com/openapi-typescript-infra/service/commit/3f1f3eb04a25ea00b333fb89b21c4953d694478f))
14
+
1
15
  ## [4.8.4](https://github.com/openapi-typescript-infra/service/compare/v4.8.3...v4.8.4) (2023-11-20)
2
16
 
3
17
 
package/Makefile CHANGED
@@ -46,9 +46,9 @@ bundlespec:
46
46
  src/generated/service/index.ts: $(shell find api -type f)
47
47
  echo "Building service interface"
48
48
  ifndef BUNDLE_OUTPUT
49
- $(eval BUNDLE_OUTPUT := $(shell mktemp -d))
49
+ $(eval BUNDLE_OUTPUT := $(shell mktemp -d))
50
50
  $(eval GENERATED_DIR := true)
51
- endif
51
+ endif
52
52
  $(MAKE) bundlespec SERVICE_NAME=$(SERVICE_NAME) BUNDLE_OUTPUT=$(BUNDLE_OUTPUT)
53
53
  yarn dlx openapi-typescript-express $(BUNDLE_OUTPUT)/openapi-spec.json \
54
54
  --output ./src/generated/service/index.ts
@@ -64,7 +64,7 @@ CONFIG_TYPE ?= $(camel_case_name)ConfigSchema
64
64
  config-schema: src/generated/config-validator.ts
65
65
 
66
66
  src/generated/config-validator.ts: src/types/config.ts
67
- npx -y @sesamecare-oss/typia-standalone-validator \
67
+ yarn typia-standalone-validator \
68
68
  $(CONFIG_TYPE_SRC) $(CONFIG_TYPE) \
69
69
  --project tsconfig.json -o src/generated/config-validator.ts
70
70
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openapi-typescript-infra/service",
3
- "version": "4.8.4",
3
+ "version": "4.8.6",
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": {