Skip to content

Commit

Permalink
Merge pull request #236 from esek/fix/dates
Browse files Browse the repository at this point in the history
[FIX] date resolvers
  • Loading branch information
blennster authored Aug 24, 2022
2 parents 28a8abe + 2ccd52c commit e759b5f
Show file tree
Hide file tree
Showing 10 changed files with 3,649 additions and 2,531 deletions.
12 changes: 9 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/src/app.ts",
"args": ["src/app.ts"],
"runtimeArgs": ["--nolazy", "-r", "ts-node/register"],
"args": [
"src/app.ts"
],
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register"
],
"cwd": "${workspaceRoot}",
"smartStep": true,
"sourceMaps": true,
Expand All @@ -24,7 +30,7 @@
"name": "Attach",
"port": 9229,
"request": "attach",
"type": "pwa-node",
"type": "node",
"smartStep": true,
"sourceMaps": true,
"skipFiles": [
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Alla märkbara ändringar ska dokumenteras i denna fil.

Baserat på [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
och följer [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.1.1] - 2022-08-24
- Fixat `Date` resolvers

## [1.1.0] - 2022-08-20

Expand Down
1 change: 0 additions & 1 deletion codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ generates:
scalars:
Object: Record<string, string>
Date: Date
DateTime: Date
mappers:
Article: ../mappers#ArticleResponse
File: ../mappers#FileResponse
Expand Down
Loading

0 comments on commit e759b5f

Please sign in to comment.