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 5986360 commit 71ce468Copy full SHA for 71ce468
packages/devextreme-cli/src/utility/prompts/react-app-type.js
@@ -6,12 +6,12 @@ const choices = [
6
];
7
8
const question = {
9
- message: 'Specify the desired application type:',
+ message: 'Specify the desired React application type:',
10
choices: choices
11
};
12
13
-const getScaffoldToolInfo = async(defaultValue) => {
+const getReactAppType = async(defaultValue) => {
14
return await prompts(question, choices, defaultValue);
15
16
17
-module.exports = getScaffoldToolInfo;
+module.exports = getReactAppType;
0 commit comments