telerik / kendo-react

Issue tracker - KendoReact http://www.telerik.com/kendo-react-ui/
https://kendo-react-teal.vercel.app
Other
212 stars 37 forks source link

[Bug] The KendoReact dependencies are not added when create-kendoreact-app is used #2550

Open vveesseelliinnaa opened 5 days ago

vveesseelliinnaa commented 5 days ago

Public item - https://feedback.telerik.com/kendo-react-ui/1561911

I'm submitting a...

Current behavior

The dependencies for the KendoReact packages are not added tot he package.json file when a project is scaffolded with create-kendoreact-app.

Expected behavior

The created project has to contain references for all KendoReact packages.

Minimal reproduction of the problem with instructions

  1. Follow the steps form this article - https://www.telerik.com/kendo-react-ui/components/getting-started/create-kendoreact-app/#toc-create-kendoreact-app
  2. Open the created project and observe the almost empty package.json file:
{
  "name": "my-test-ckra",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "cra-template-kendo-sass": "file:../../../.npm/_npx/b702a42a1b530dca/node_modules/cra-template-kendo-sass",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "react-scripts": "5.0.1"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": [
      "react-app",
      "react-app/jest"
    ]
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  },
  "devDependencies": {
    "sass": "^^1.68.0"
  }
}
joelparkerhenderson commented 10 hours ago

Thanks all for looking into this. What's the plan for an automated build test? Meaning, an automated test such that when a new Kendo release is being prepared, some automatic process happens that tries at least the basic test of "Does it set up?"