Skip to content

Commit c4eed4c

Browse files
committed
fix(make): fix makefile targets
1 parent d19f13f commit c4eed4c

File tree

3 files changed

+471
-463
lines changed

3 files changed

+471
-463
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# all: service dbi ts
2121
#
2222

23-
build_dir := $(node -e "console.log(require('./package.json').main.replace(/^.\//, '').split('/')[0])")
23+
build_dir := $(shell node -e "console.log(require('./package.json').main.replace(/^.\//, '').split('/')[0])")
2424
src_files := $(shell find src -name '*.ts')
2525
build_files := $(patsubst src/%.ts,$(build_dir)/%.js,$(src_files))
2626

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"homepage": "https://github.com/openapi-typescript-infra/service#readme",
5353
"dependencies": {
5454
"@gasbuddy/confit": "^3.0.0",
55-
"@godaddy/terminus": "^4.12.0",
55+
"@godaddy/terminus": "^4.12.1",
5656
"@opentelemetry/api": "^1.4.1",
5757
"@opentelemetry/api-metrics": "^0.33.0",
5858
"@opentelemetry/exporter-prometheus": "^0.39.1",
@@ -72,7 +72,7 @@
7272
"@opentelemetry/sdk-node": "^0.39.1",
7373
"@opentelemetry/semantic-conventions": "^1.13.0",
7474
"cookie-parser": "^1.4.6",
75-
"dotenv": "^16.3.0",
75+
"dotenv": "^16.3.1",
7676
"eventsource": "^1.1.2",
7777
"express": "next",
7878
"express-openapi-validator": "^5.0.4",
@@ -87,9 +87,9 @@
8787
"shortstop-yaml": "^1.0.0"
8888
},
8989
"devDependencies": {
90-
"@commitlint/cli": "^17.6.5",
91-
"@commitlint/config-conventional": "^17.6.5",
92-
"@openapi-typescript-infra/coconfig": "^3.0.2",
90+
"@commitlint/cli": "^17.6.6",
91+
"@commitlint/config-conventional": "^17.6.6",
92+
"@openapi-typescript-infra/coconfig": "^3.1.0",
9393
"@types/cookie-parser": "^1.4.3",
9494
"@types/eventsource": "1.1.11",
9595
"@types/express": "^4.17.17",
@@ -99,20 +99,20 @@
9999
"@types/minimist": "^1.2.2",
100100
"@types/node": "^18.16.15",
101101
"@types/supertest": "^2.0.12",
102-
"coconfig": "^0.12.0",
103-
"eslint": "^8.43.0",
102+
"coconfig": "^0.12.2",
103+
"eslint": "^8.45.0",
104104
"eslint-config-gasbuddy": "^7.2.0",
105105
"eslint-config-prettier": "^8.8.0",
106-
"eslint-plugin-jest": "^27.2.1",
106+
"eslint-plugin-jest": "^27.2.3",
107107
"husky": "^8.0.3",
108-
"jest": "^29.5.0",
109-
"lint-staged": "^13.2.2",
110-
"pino-pretty": "^10.0.0",
108+
"jest": "^29.6.1",
109+
"lint-staged": "^13.2.3",
110+
"pino-pretty": "^10.0.1",
111111
"pinst": "^3.0.0",
112112
"supertest": "^6.3.3",
113-
"ts-jest": "^29.1.0",
113+
"ts-jest": "^29.1.1",
114114
"ts-node": "^10.9.1",
115-
"typescript": "^5.1.3"
115+
"typescript": "^5.1.6"
116116
},
117117
"packageManager": "[email protected]"
118118
}

0 commit comments

Comments
 (0)