devextreme-cli 1.2.21 → 1.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devextreme-cli",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.22",
|
|
4
4
|
"description": "DevExtreme CLI",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"devexpress",
|
|
@@ -58,10 +58,10 @@
|
|
|
58
58
|
"eslint-plugin-jest": "^22.5.1",
|
|
59
59
|
"eslint-plugin-react": "^7.20.6",
|
|
60
60
|
"eslint-plugin-react-hooks": "^4.1.0",
|
|
61
|
-
"eslint-plugin-unused-imports": "^
|
|
61
|
+
"eslint-plugin-unused-imports": "^1.1.5",
|
|
62
62
|
"eslint-plugin-vue": "^7.0.0-beta.2",
|
|
63
63
|
"eslint-stylish": "^0.2.0",
|
|
64
|
-
"jest": "^
|
|
64
|
+
"jest": "^27.3.1",
|
|
65
65
|
"jest-image-snapshot": "^4.5.0",
|
|
66
66
|
"puppeteer": "^2.1.1",
|
|
67
67
|
"rimraf": "^2.6.3",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"tree-kill-promise": "^1.0.3",
|
|
70
70
|
"typescript": "^4.0.2"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "246b01d1d70a6e0df684e8250f49e896aafd1447"
|
|
73
73
|
}
|
|
@@ -32,7 +32,7 @@ async function runSchematicCommand(schematicCommand, options, evaluatingOptions)
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
async function runNgCommand(commandArguments, evaluatingOptions) {
|
|
35
|
-
const ngCommandArguments = await hasSutableNgCli() ? [] : ['-p', '@angular/cli'];
|
|
35
|
+
const ngCommandArguments = await hasSutableNgCli() ? [] : ['-p', '@angular/cli@12'];
|
|
36
36
|
|
|
37
37
|
ngCommandArguments.push('ng', ...commandArguments);
|
|
38
38
|
return runCommand('npx', ngCommandArguments, evaluatingOptions);
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
const packageJson = require('../../package.json');
|
|
2
2
|
module.exports = {
|
|
3
|
-
'devextreme': '^21.
|
|
4
|
-
'devextreme-react': '^21.
|
|
5
|
-
'devextreme-vue': '^21.
|
|
3
|
+
'devextreme': '^21.2.3',
|
|
4
|
+
'devextreme-react': '^21.2.3',
|
|
5
|
+
'devextreme-vue': '^21.2.3',
|
|
6
6
|
'devextreme-cli': packageJson.version,
|
|
7
7
|
'devextreme-schematics': 'latest'
|
|
8
8
|
};
|