We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1162cf5 commit 163b309Copy full SHA for 163b309
1 file changed
packages/generators/add-generator.ts
@@ -162,14 +162,14 @@ export default class AddGenerator extends Generator {
162
this.configuration.config.item = action;
163
});
164
} else {
165
- if(action === 'topScope'){
+ if (action === "topScope") {
166
return this.prompt([
167
- Input("topScope", "Enter line youwant to add to topScope"),
+ Input("topScope", "Enter line you want to add to topScope"),
168
])
169
.then((topScopeAnswer) => {
170
this.configuration.config.topScope.push(topScopeAnswer.topScope);
171
done();
172
- })
+ });
173
}
174
175
const temp: string = action;
0 commit comments