@openapi-typescript-infra/service 2.6.0 → 2.6.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/Makefile +1 -1
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [2.6.2](https://github.com/openapi-typescript-infra/service/compare/v2.6.1...v2.6.2) (2023-09-16)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **openapi:** depend on all files in subdirs ([d4eaa2c](https://github.com/openapi-typescript-infra/service/commit/d4eaa2cdbaa791bb250f41ce6703c32f8c90b192))
7
+
8
+ ## [2.6.1](https://github.com/openapi-typescript-infra/service/compare/v2.6.0...v2.6.1) (2023-09-16)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **openapi:** proper dependency for split spec files ([cc82772](https://github.com/openapi-typescript-infra/service/commit/cc827722939113faf5e03d7b5685dc38e6ceeb52))
14
+
1
15
  # [2.6.0](https://github.com/openapi-typescript-infra/service/compare/v2.5.0...v2.6.0) (2023-09-16)
2
16
 
3
17
 
package/Makefile CHANGED
@@ -36,7 +36,7 @@ $(word 1, $(build_files)): $(src_files)
36
36
 
37
37
  service: src/generated/service/index.ts
38
38
 
39
- src/generated/service/index.ts: api/${SERVICE_NAME}.yaml
39
+ src/generated/service/index.ts: $(shell find api -type f)
40
40
  echo "Building service interface"
41
41
  $(eval TMP := $(shell mktemp -d))
42
42
  yarn dlx @redocly/openapi-cli@latest bundle ./api/${SERVICE_NAME}.yaml -o $(TMP)/api.yaml
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openapi-typescript-infra/service",
3
- "version": "2.6.0",
3
+ "version": "2.6.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": {