We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fea0354 commit e6f2d23Copy full SHA for e6f2d23
src/cli.js
@@ -16,6 +16,7 @@ export async function componentizeCmd(jsSource, opts) {
16
debugBindings: opts.debugBindings,
17
debugBuild: opts.useDebugBuild,
18
enableWizerLogging: opts.enableWizerLogging,
19
+ wizerBin: opts.wizerBin,
20
});
21
await writeFile(opts.out, component);
22
}
@@ -43,6 +44,10 @@ program
43
44
'--enable-wizer-logging',
45
'enable debug logging for calls in the generated component',
46
)
47
+ .option(
48
+ '--wizer-bin <path>',
49
+ 'specify a path to a local wizer binary',
50
+ )
51
.requiredOption('-o, --out <out>', 'output component file')
52
.action(asyncAction(componentizeCmd));
53
0 commit comments