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 eb2d1a5 commit 4fdf15fCopy full SHA for 4fdf15f
packages/devextreme-cli/src/utility/extract-tooling-version.js
@@ -1,10 +1,11 @@
1
const toolingVersionOptionName = 'tooling-version';
2
+const defaultVersion = '5.0.1';
3
4
const extractToolingVersion = (commandOptions) => {
5
if(commandOptions && commandOptions[toolingVersionOptionName]) {
6
return `@${commandOptions[toolingVersionOptionName]}`;
7
}
- return '';
8
+ return `@${defaultVersion}`;
9
};
10
11
module.exports = {
0 commit comments