(\w+\s*)+<\/title>/, `${appName}<\/title>`);
+ htmlContent = htmlContent.replace(/[^<]+<\/title>/, `${appName}<\/title>`);
htmlContent = htmlContent.replace('', '');
fs.writeFileSync(indexHtmlPath, htmlContent);
@@ -97,7 +94,6 @@ const addTemplate = (appPath, appName, templateOptions) => {
);
const manifestPath = path.join(appPath, 'public', 'manifest.json');
- const indexPath = path.join(appPath, 'src', templateOptions.isTypeScript ? 'index.tsx' : 'index.js');
const styles = [
'./themes/generated/theme.additional.css',
@@ -108,15 +104,15 @@ const addTemplate = (appPath, appName, templateOptions) => {
];
templateCreator.moveTemplateFilesToProject(applicationTemplatePath, appPath, templateOptions, getCorrectPath);
- removeFile(path.join(appPath, 'src', 'App.css'));
- !templateOptions.isTypeScript && removeFile(path.join(appPath, 'src', 'types.js'));
+
+ !templateOptions.isTypeScript && removeFile(path.join(appPath, 'src', 'types.jsx'));
+
if(!templateOptions.empty) {
addSamplePages(appPath, templateOptions);
}
preparePackageJsonForTemplate(appPath, appName, templateOptions.isTypeScript);
updateJsonPropName(manifestPath, appName);
- addPolyfills(packageJsonUtils.getPackageJsonPath(), indexPath);
install({}, appPath, styles);
};
@@ -130,15 +126,6 @@ const install = (options, appPath, styles) => {
packageManager.runInstall({ cwd: appPath });
};
-const addPolyfills = (packagePath, indexPath) => {
- const packages = [
- { name: 'react-app-polyfill', version: '^1.0.0' }
- ];
-
- packageJsonUtils.addDependencies(packagePath, packages);
- moduleUtils.insertImport(indexPath, './polyfills');
-};
-
const addStylesToApp = (filePath, styles) => {
styles.forEach(style => {
moduleUtils.insertImport(filePath, style);
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/LICENSE b/packages/devextreme-cli/src/templates/cra-template-typescript/LICENSE
deleted file mode 100644
index 5930f2b8d..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2013-present, Facebook, Inc.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
\ No newline at end of file
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/README.md b/packages/devextreme-cli/src/templates/cra-template-typescript/README.md
deleted file mode 100644
index e7197568d..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/README.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# cra-template-typescript
-
-This is the official TypeScript template for [Create React App](https://github.com/facebook/create-react-app).
-
-To use this template, add `--template typescript` when creating a new app.
-
-For example:
-
-```sh
-npx create-react-app my-app --template typescript
-
-# or
-
-yarn create react-app my-app --template typescript
-```
-
-For more information, please refer to:
-
-- [Getting Started](https://create-react-app.dev/docs/getting-started) – How to create a new app.
-- [User Guide](https://create-react-app.dev) – How to develop apps bootstrapped with Create React App.
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/package.json b/packages/devextreme-cli/src/templates/cra-template-typescript/package.json
deleted file mode 100644
index 88de656d7..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/package.json
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- "name": "cra-template-typescript",
- "version": "1.2.0",
- "keywords": [
- "react",
- "create-react-app",
- "template",
- "typescript"
- ],
- "description": "The base TypeScript template for Create React App.",
- "repository": {
- "type": "git",
- "url": "https://github.com/facebook/create-react-app.git",
- "directory": "packages/cra-template-typescript"
- },
- "license": "MIT",
- "engines": {
- "node": ">=14.21.3"
- },
- "bugs": {
- "url": "https://github.com/facebook/create-react-app/issues"
- },
- "files": [
- "template",
- "template.json"
- ]
-}
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template.json b/packages/devextreme-cli/src/templates/cra-template-typescript/template.json
deleted file mode 100644
index 3678a922d..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template.json
+++ /dev/null
@@ -1,19 +0,0 @@
-{
- "package": {
- "dependencies": {
- "@testing-library/jest-dom": "^6.6.3",
- "@testing-library/react": "^16.2.0",
- "@testing-library/dom": "^10.4.0",
- "@testing-library/user-event": "^14.6.0",
- "@types/jest": "^29.5.14",
- "@types/node": "^22.0.0",
- "@types/react": "^19.0.0",
- "@types/react-dom": "^19.0.0",
- "typescript": "^4.0.0",
- "web-vitals": "^4.2.4"
- },
- "eslintConfig": {
- "extends": ["react-app", "react-app/jest"]
- }
- }
-}
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template/README.md b/packages/devextreme-cli/src/templates/cra-template-typescript/template/README.md
deleted file mode 100644
index b87cb0044..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template/README.md
+++ /dev/null
@@ -1,46 +0,0 @@
-# Getting Started with Create React App
-
-This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
-
-## Available Scripts
-
-In the project directory, you can run:
-
-### `npm start`
-
-Runs the app in the development mode.\
-Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
-
-The page will reload if you make edits.\
-You will also see any lint errors in the console.
-
-### `npm test`
-
-Launches the test runner in the interactive watch mode.\
-See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
-
-### `npm run build`
-
-Builds the app for production to the `build` folder.\
-It correctly bundles React in production mode and optimizes the build for the best performance.
-
-The build is minified and the filenames include the hashes.\
-Your app is ready to be deployed!
-
-See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
-
-### `npm run eject`
-
-**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
-
-If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
-
-Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
-
-You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
-
-## Learn More
-
-You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
-
-To learn React, check out the [React documentation](https://reactjs.org/).
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template/gitignore b/packages/devextreme-cli/src/templates/cra-template-typescript/template/gitignore
deleted file mode 100644
index 4d29575de..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template/gitignore
+++ /dev/null
@@ -1,23 +0,0 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.js
-
-# testing
-/coverage
-
-# production
-/build
-
-# misc
-.DS_Store
-.env.local
-.env.development.local
-.env.test.local
-.env.production.local
-
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template/public/index.html b/packages/devextreme-cli/src/templates/cra-template-typescript/template/public/index.html
deleted file mode 100644
index aa069f27c..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template/public/index.html
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- React App
-
-
-
-
-
-
-
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/App.css b/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/App.css
deleted file mode 100644
index 74b5e0534..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/App.css
+++ /dev/null
@@ -1,38 +0,0 @@
-.App {
- text-align: center;
-}
-
-.App-logo {
- height: 40vmin;
- pointer-events: none;
-}
-
-@media (prefers-reduced-motion: no-preference) {
- .App-logo {
- animation: App-logo-spin infinite 20s linear;
- }
-}
-
-.App-header {
- background-color: #282c34;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: calc(10px + 2vmin);
- color: white;
-}
-
-.App-link {
- color: #61dafb;
-}
-
-@keyframes App-logo-spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
-}
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/App.test.tsx b/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/App.test.tsx
deleted file mode 100644
index f0db7d3d4..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/App.test.tsx
+++ /dev/null
@@ -1,10 +0,0 @@
-import React from 'react';
-import { render } from '@testing-library/react';
-import { screen } from '@testing-library/dom';
-import App from './App';
-
-test('renders learn react link', () => {
- render();
- const linkElement = screen.getByText(/learn react/i);
- expect(linkElement).toBeInTheDocument();
-});
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/App.tsx b/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/App.tsx
deleted file mode 100644
index a53698aab..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/App.tsx
+++ /dev/null
@@ -1,26 +0,0 @@
-import React from 'react';
-import logo from './logo.svg';
-import './App.css';
-
-function App() {
- return (
-
- );
-}
-
-export default App;
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/index.tsx b/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/index.tsx
deleted file mode 100644
index 032464fb6..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/index.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-import React from 'react';
-import ReactDOM from 'react-dom/client';
-import './index.css';
-import App from './App';
-import reportWebVitals from './reportWebVitals';
-
-const root = ReactDOM.createRoot(
- document.getElementById('root') as HTMLElement
-);
-root.render(
-
-
-
-);
-
-// If you want to start measuring performance in your app, pass a function
-// to log results (for example: reportWebVitals(console.log))
-// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
-reportWebVitals();
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/logo.svg b/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/logo.svg
deleted file mode 100644
index 9dfc1c058..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/logo.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/reportWebVitals.ts b/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/reportWebVitals.ts
deleted file mode 100644
index 1e8febd4a..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/reportWebVitals.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-const reportWebVitals = (onPerfEntry?: () => any) => {
- if (onPerfEntry && onPerfEntry instanceof Function) {
- import('web-vitals').then(({ onLCP, onINP, onCLS, onFCP, onTTFB }) => {
- onCLS(onPerfEntry);
- onINP(onPerfEntry);
- onLCP(onPerfEntry);
- onFCP(onPerfEntry);
- onTTFB(onPerfEntry);
- });
- }
-};
-
-export default reportWebVitals;
diff --git a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/setupTests.ts b/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/setupTests.ts
deleted file mode 100644
index 8f2609b7b..000000000
--- a/packages/devextreme-cli/src/templates/cra-template-typescript/template/src/setupTests.ts
+++ /dev/null
@@ -1,5 +0,0 @@
-// jest-dom adds custom jest matchers for asserting on DOM nodes.
-// allows you to do things like:
-// expect(element).toHaveTextContent(/react/i)
-// learn more: https://github.com/testing-library/jest-dom
-import '@testing-library/jest-dom';
diff --git a/packages/devextreme-cli/src/templates/cra-template/LICENSE b/packages/devextreme-cli/src/templates/cra-template/LICENSE
deleted file mode 100644
index 5930f2b8d..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2013-present, Facebook, Inc.
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
\ No newline at end of file
diff --git a/packages/devextreme-cli/src/templates/cra-template/README.md b/packages/devextreme-cli/src/templates/cra-template/README.md
deleted file mode 100644
index 9e8434b78..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/README.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# cra-template
-
-This is the official base template for [Create React App](https://github.com/facebook/create-react-app).
-
-If you don't specify a template (for example, `--template typescript`), this template will be used by default.
-
-For more information, please refer to:
-
-- [Getting Started](https://create-react-app.dev/docs/getting-started) – How to create a new app.
-- [User Guide](https://create-react-app.dev) – How to develop apps bootstrapped with Create React App.
diff --git a/packages/devextreme-cli/src/templates/cra-template/package.json b/packages/devextreme-cli/src/templates/cra-template/package.json
deleted file mode 100644
index 53350728e..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/package.json
+++ /dev/null
@@ -1,26 +0,0 @@
-{
- "name": "cra-template",
- "version": "1.2.0",
- "keywords": [
- "react",
- "create-react-app",
- "template"
- ],
- "description": "The base template for Create React App.",
- "repository": {
- "type": "git",
- "url": "https://github.com/facebook/create-react-app.git",
- "directory": "packages/cra-template"
- },
- "license": "MIT",
- "engines": {
- "node": ">=14.21.3"
- },
- "bugs": {
- "url": "https://github.com/facebook/create-react-app/issues"
- },
- "files": [
- "template",
- "template.json"
- ]
-}
diff --git a/packages/devextreme-cli/src/templates/cra-template/template.json b/packages/devextreme-cli/src/templates/cra-template/template.json
deleted file mode 100644
index 65327dcb1..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/template.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "package": {
- "dependencies": {
- "@testing-library/jest-dom": "^6.6.3",
- "@testing-library/react": "^16.2.0",
- "@testing-library/dom": "^10.4.0",
- "@testing-library/user-event": "^14.6.0",
- "web-vitals": "^4.2.4"
- },
- "eslintConfig": {
- "extends": ["react-app", "react-app/jest"]
- }
- }
-}
diff --git a/packages/devextreme-cli/src/templates/cra-template/template/README.md b/packages/devextreme-cli/src/templates/cra-template/template/README.md
deleted file mode 100644
index 58beeaccd..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/template/README.md
+++ /dev/null
@@ -1,70 +0,0 @@
-# Getting Started with Create React App
-
-This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
-
-## Available Scripts
-
-In the project directory, you can run:
-
-### `npm start`
-
-Runs the app in the development mode.\
-Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
-
-The page will reload when you make changes.\
-You may also see any lint errors in the console.
-
-### `npm test`
-
-Launches the test runner in the interactive watch mode.\
-See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
-
-### `npm run build`
-
-Builds the app for production to the `build` folder.\
-It correctly bundles React in production mode and optimizes the build for the best performance.
-
-The build is minified and the filenames include the hashes.\
-Your app is ready to be deployed!
-
-See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
-
-### `npm run eject`
-
-**Note: this is a one-way operation. Once you `eject`, you can't go back!**
-
-If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
-
-Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
-
-You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
-
-## Learn More
-
-You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
-
-To learn React, check out the [React documentation](https://reactjs.org/).
-
-### Code Splitting
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
-
-### Analyzing the Bundle Size
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
-
-### Making a Progressive Web App
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
-
-### Advanced Configuration
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
-
-### Deployment
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
-
-### `npm run build` fails to minify
-
-This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
diff --git a/packages/devextreme-cli/src/templates/cra-template/template/gitignore b/packages/devextreme-cli/src/templates/cra-template/template/gitignore
deleted file mode 100644
index 4d29575de..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/template/gitignore
+++ /dev/null
@@ -1,23 +0,0 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.js
-
-# testing
-/coverage
-
-# production
-/build
-
-# misc
-.DS_Store
-.env.local
-.env.development.local
-.env.test.local
-.env.production.local
-
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
diff --git a/packages/devextreme-cli/src/templates/cra-template/template/public/favicon.ico b/packages/devextreme-cli/src/templates/cra-template/template/public/favicon.ico
deleted file mode 100644
index a11777cc4..000000000
Binary files a/packages/devextreme-cli/src/templates/cra-template/template/public/favicon.ico and /dev/null differ
diff --git a/packages/devextreme-cli/src/templates/cra-template/template/public/index.html b/packages/devextreme-cli/src/templates/cra-template/template/public/index.html
deleted file mode 100644
index aa069f27c..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/template/public/index.html
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- React App
-
-
-
-
-
-
-
diff --git a/packages/devextreme-cli/src/templates/cra-template/template/public/logo192.png b/packages/devextreme-cli/src/templates/cra-template/template/public/logo192.png
deleted file mode 100644
index fc44b0a37..000000000
Binary files a/packages/devextreme-cli/src/templates/cra-template/template/public/logo192.png and /dev/null differ
diff --git a/packages/devextreme-cli/src/templates/cra-template/template/public/logo512.png b/packages/devextreme-cli/src/templates/cra-template/template/public/logo512.png
deleted file mode 100644
index a4e47a654..000000000
Binary files a/packages/devextreme-cli/src/templates/cra-template/template/public/logo512.png and /dev/null differ
diff --git a/packages/devextreme-cli/src/templates/cra-template/template/public/manifest.json b/packages/devextreme-cli/src/templates/cra-template/template/public/manifest.json
deleted file mode 100644
index 080d6c77a..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/template/public/manifest.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "short_name": "React App",
- "name": "Create React App Sample",
- "icons": [
- {
- "src": "favicon.ico",
- "sizes": "64x64 32x32 24x24 16x16",
- "type": "image/x-icon"
- },
- {
- "src": "logo192.png",
- "type": "image/png",
- "sizes": "192x192"
- },
- {
- "src": "logo512.png",
- "type": "image/png",
- "sizes": "512x512"
- }
- ],
- "start_url": ".",
- "display": "standalone",
- "theme_color": "#000000",
- "background_color": "#ffffff"
-}
diff --git a/packages/devextreme-cli/src/templates/cra-template/template/public/robots.txt b/packages/devextreme-cli/src/templates/cra-template/template/public/robots.txt
deleted file mode 100644
index e9e57dc4d..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/template/public/robots.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# https://www.robotstxt.org/robotstxt.html
-User-agent: *
-Disallow:
diff --git a/packages/devextreme-cli/src/templates/cra-template/template/src/App.css b/packages/devextreme-cli/src/templates/cra-template/template/src/App.css
deleted file mode 100644
index 74b5e0534..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/template/src/App.css
+++ /dev/null
@@ -1,38 +0,0 @@
-.App {
- text-align: center;
-}
-
-.App-logo {
- height: 40vmin;
- pointer-events: none;
-}
-
-@media (prefers-reduced-motion: no-preference) {
- .App-logo {
- animation: App-logo-spin infinite 20s linear;
- }
-}
-
-.App-header {
- background-color: #282c34;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: calc(10px + 2vmin);
- color: white;
-}
-
-.App-link {
- color: #61dafb;
-}
-
-@keyframes App-logo-spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
-}
diff --git a/packages/devextreme-cli/src/templates/cra-template/template/src/App.js b/packages/devextreme-cli/src/templates/cra-template/template/src/App.js
deleted file mode 100644
index 378457572..000000000
--- a/packages/devextreme-cli/src/templates/cra-template/template/src/App.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import logo from './logo.svg';
-import './App.css';
-
-function App() {
- return (
-