Skip to content

Commit

Permalink
chore: cleanup repo
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackDark committed Oct 11, 2024
1 parent 8ca2d07 commit ba695ef
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 52 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ spec:
- name: configarr
image: ghcr.io/raydak-labs/configarr:latest
imagePullPolicy: Always
tty: true # for color support
envFrom:
- configMapRef:
name: common-deployment-environment
Expand Down
43 changes: 0 additions & 43 deletions docker-compose.yml

This file was deleted.

4 changes: 2 additions & 2 deletions generate-api.js → generate-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const main = async () => {
url: "https://raw.githubusercontent.com/Sonarr/Sonarr/develop/src/Sonarr.Api.V3/openapi.json",
modular: true,
singleHttpClient: true,
// little hack to have one single client (we are deleting the weird created file for the http-client)
// @ts-ignore little hack to have one single client (we are deleting the weird created file for the http-client)
fileNames: {
httpClient: "../ky-client",
},
Expand All @@ -23,7 +23,7 @@ const main = async () => {
url: "https://raw.githubusercontent.com/Radarr/Radarr/develop/src/Radarr.Api.V3/openapi.json",
modular: true,
singleHttpClient: true,
// little hack to have one single client (we are deleting the weird created file for the http-client)
// @ts-ignore little hack to have one single client (we are deleting the weird created file for the http-client)
fileNames: {
httpClient: "../ky-client",
},
Expand Down
5 changes: 0 additions & 5 deletions input.yml

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"build": "tsx esbuild.ts",
"coverage": "vitest run --coverage",
"generateApi": "tsx generate-api.js && prettier src/__generated__ --write",
"generateApi": "tsx generate-api.ts && prettier src/__generated__ --write",
"lint": "prettier . --check",
"start": "tsx index.ts",
"test": "vitest",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"skipLibCheck": true,
"strict": true,
"target": "ESNext"
}
},
"exclude": ["./dist"]
}

0 comments on commit ba695ef

Please sign in to comment.