devextreme-cli 1.3.1 → 1.3.2

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.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "DevExtreme CLI",
5
5
  "keywords": [
6
6
  "devexpress",
@@ -69,5 +69,5 @@
69
69
  "tree-kill-promise": "^1.0.3",
70
70
  "typescript": "^4.0.2"
71
71
  },
72
- "gitHead": "4f9873f14724ac858b6d0e73bacc124c147a7eb5"
72
+ "gitHead": "bab9c1bd00964b2f33258bf0b5a5a68107b68fb4"
73
73
  }
@@ -21,8 +21,6 @@ const preparePackageJsonForTemplate = (appPath, appName) => {
21
21
  const dependencies = [
22
22
  { name: 'sass', version: '^1.34.1' },
23
23
  { name: 'devextreme-cli', version: latestVersions['devextreme-cli'], dev: true },
24
- { name: 'react', version: '^17.0.0' },
25
- { name: 'react-dom', version: '^17.0.0' },
26
24
  { name: 'react-router-dom', version: '^5.0.0' },
27
25
  ];
28
26
  const scripts = [
@@ -62,7 +62,7 @@ async function createVueApp(name, version) {
62
62
  argList.push('-p "Default (Vue 3)"');
63
63
  }
64
64
 
65
- return runCommand('npx', argList, { windowsVerbatimArguments: false });
65
+ return runCommand('npx', argList);
66
66
  }
67
67
 
68
68
  const create = async(appName, options) => {