devextreme-cli 1.10.0 → 1.10.1

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.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "DevExtreme CLI",
5
5
  "keywords": [
6
6
  "devexpress",
@@ -43,7 +43,7 @@
43
43
  "minimist": "^1.2.8",
44
44
  "mustache": "^3.2.1",
45
45
  "prompts": "^2.4.2",
46
- "sass": "^1.86.0",
46
+ "sass": "^1.86.3",
47
47
  "semver": "^5.7.2",
48
48
  "strip-bom": "^4.0.0"
49
49
  },
@@ -58,7 +58,7 @@
58
58
  "eslint-plugin-angular": "^4.1.0",
59
59
  "eslint-plugin-jest": "^22.21.0",
60
60
  "eslint-plugin-prettier": "^4.2.1",
61
- "eslint-plugin-react": "^7.37.4",
61
+ "eslint-plugin-react": "^7.37.5",
62
62
  "eslint-plugin-react-hooks": "^4.6.2",
63
63
  "eslint-plugin-unused-imports": "^1.1.5",
64
64
  "eslint-plugin-vue": "^7.20.0",
@@ -72,5 +72,5 @@
72
72
  "typescript": "^4.0.2",
73
73
  "typescript-eslint-parser": "^22.0.0"
74
74
  },
75
- "gitHead": "a29437ade8ce07c75b0d7df33a54b0e42f7f57af"
75
+ "gitHead": "c8a1d6b0ae5e608f67ed1fbbd1fba3427f3cbfcf"
76
76
  }
@@ -125,7 +125,7 @@ const changeMainTs = (appPath) => {
125
125
  moduleWorker.insertImport(filePath, 'devextreme/ui/themes', 'themes', true);
126
126
 
127
127
  const fileContent = fs.readFileSync(filePath).toString();
128
- const bootstrapPattern = /platformBrowserDynamic\(\)\.bootstrapModule\(\s*AppModule\s*(?:,\s*\{[^}]*\})?\s*\)/;
128
+ const bootstrapPattern = /platformBrowser(?:Dynamic)?\(\)\.bootstrapModule\(\s*AppModule\s*(?:,\s*\{[^}]*\})?\s*\)/;
129
129
  const firstChaptStr = fileContent.match(bootstrapPattern)[0];
130
130
  const lastChaptStr = '.catch(err => console.error(err));';
131
131