Skip to content

Commit c58eea5

Browse files
committed
bump: 11.0.1; fix: problems with generate-templates command
1 parent e64d703 commit c58eea5

File tree

5 files changed

+52
-2362
lines changed

5 files changed

+52
-2362
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# next release
22

3+
# 11.0.1
4+
5+
- fix: problems with --http-client option in `generate-templates` command
6+
- fix: rewrite file content in `generate-templates` command
7+
38
# 11.0.0
49

510
## Breaking changes

index.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,14 @@ const main = async () => {
290290
break;
291291
}
292292
case "generate-templates": {
293-
await generateTemplates(options);
293+
await generateTemplates({
294+
cleanOutput: options.cleanOutput,
295+
output: options.output,
296+
httpClientType: options.httpClient,
297+
modular: options.modular,
298+
silent: options.silent,
299+
rewrite: options.rewrite,
300+
});
294301
break;
295302
}
296303
default: {

0 commit comments

Comments
 (0)