@openapi-typescript-infra/service 5.5.0 → 5.5.1

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 (2) hide show
  1. package/Makefile +2 -4
  2. package/package.json +1 -1
package/Makefile CHANGED
@@ -29,13 +29,11 @@ src_files := $(shell find src -name '*.ts')
29
29
  build_files := $(patsubst src/%.ts,$(build_dir)/%.js,$(src_files))
30
30
  camel_case_name := $(shell echo $(SERVICE_NAME) | awk -F- '{result=""; for(i=1; i<=NF; i++) result = result toupper(substr($$i,1,1)) substr($$i,2); print result}' | tr -d '\n')
31
31
 
32
- # General utilities
32
+ ts: $(word 1, $(build_files))
33
+
33
34
  clean:
34
35
  yarn dlx rimraf ./$(build_dir) src/generated tsconfig.build.tsbuildinfo
35
36
 
36
- # Typescript items
37
- ts: $(word 1, $(build_files))
38
-
39
37
  $(word 1, $(build_files)): $(src_files)
40
38
  ./node_modules/.bin/tsc -p tsconfig.build.json
41
39
  @if [ -d "node_modules/tsc-alias" ]; then \
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openapi-typescript-infra/service",
3
- "version": "5.5.0",
3
+ "version": "5.5.1",
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
  "exports": {
6
6
  ".": {