Skip to content

Commit 20345af

Browse files
committed
increased version to 0.33.0
1 parent f9af39f commit 20345af

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hypoport/openapi-typescript-codegen",
3-
"version": "0.32.4",
3+
"version": "0.33.0",
44
"description": "Library that generates Typescript clients based on the OpenAPI specification.",
55
"author": "Ferdi Koomen",
66
"homepage": "https://github.com/ferdikoomen/openapi-typescript-codegen",

src/utils/registerHandlebarHelpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export const registerHandlebarHelpers = (root: {
110110
});
111111

112112
Handlebars.registerHelper('escapePath', function (value: string): string {
113-
return value.replace('{', `\${`);
113+
return value.replaceAll('{', `\${`);
114114
});
115115

116116
Handlebars.registerHelper('isEqual', (value1, value2) => {

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"compilerOptions": {
33
"outDir": "./dist",
4-
"target": "es2019",
4+
"target": "es2021",
55
"module": "commonjs",
66
"moduleResolution": "node",
7-
"lib": ["es2019", "dom"],
7+
"lib": ["es2021", "dom"],
88
"types": ["jest", "node"],
99
"declaration": false,
1010
"declarationMap": false,

0 commit comments

Comments
 (0)