Skip to content

Commit 89d09d3

Browse files
authored
feat(ios): 'ns widget ios' for single command widget generator (#5829)
1 parent 105f477 commit 89d09d3

File tree

8 files changed

+1117
-45
lines changed

8 files changed

+1117
-45
lines changed

lib/bootstrap.ts

+1
Original file line numberDiff line numberDiff line change
@@ -470,4 +470,5 @@ injector.requireCommand(
470470
],
471471
"./commands/native-add"
472472
);
473+
injector.requireCommand(["widget", "widget|ios"], "./commands/widget");
473474
require("./key-commands/bootstrap");

lib/commands/config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ export class ConfigListCommand implements ICommand {
3131
.map((key) => {
3232
return (
3333
color.green(`${indent()}${key}: `) +
34+
// @ts-ignore
3435
this.getValueString(value[key], depth + 1)
3536
);
3637
})

0 commit comments

Comments
 (0)