Skip to content

Commit 100de21

Browse files
authored
Merge pull request #430 from acacode/next
11.0.1 Release
2 parents e64d703 + d666508 commit 100de21

File tree

5 files changed

+56
-2362
lines changed

5 files changed

+56
-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.2
4+
5+
- fix: problems with --http-client option in `generate-templates` command
6+
- fix: rewrite file content in `generate-templates` command (`--rewrite` flag)
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)