@openapi-typescript-infra/service 2.6.5 → 2.6.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [2.6.6](https://github.com/openapi-typescript-infra/service/compare/v2.6.5...v2.6.6) (2023-09-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **ts:** automatically run tsconfig-replace-paths if it exists ([cf89107](https://github.com/openapi-typescript-infra/service/commit/cf89107065df3da5d920e8032bdf00feea0f64c1))
7
+
1
8
  ## [2.6.5](https://github.com/openapi-typescript-infra/service/compare/v2.6.4...v2.6.5) (2023-09-17)
2
9
 
3
10
 
package/Makefile CHANGED
@@ -33,6 +33,9 @@ ts: $(word 1, $(build_files))
33
33
 
34
34
  $(word 1, $(build_files)): $(src_files)
35
35
  ./node_modules/.bin/tsc -p tsconfig.build.json
36
+ @if [ -d "node_modules/tsconfig-replace-paths" ]; then \
37
+ yarn tsconfig-replace-paths --project tsconfig.build.json; \
38
+ fi
36
39
 
37
40
  service: src/generated/service/index.ts
38
41
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openapi-typescript-infra/service",
3
- "version": "2.6.5",
3
+ "version": "2.6.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": {