UI with React: Set up a React project using vite

Поділитися
Вставка

КОМЕНТАРІ • 3

  • @Hari_Vijay
    @Hari_Vijay Місяць тому +2

    npm WARN deprecated error appear in your project, what is that mean

  • @Hari_Vijay
    @Hari_Vijay Місяць тому +1

    Is npm warn deprecated a problem? Why that error appear on the screen

    • @bzddl9
      @bzddl9  Місяць тому +1

      Hi @Hari_Vijay. Yes the inflight package is marked deprecated. There is a package name glob that depends on inflight. So you need to update that package to the latest version since the latest version of glob no longer depends on inflight
      └─┬ rimraf@3.0.2
      └─┬ glob@7.2.3
      └── inflight@1.0.6
      Updated package.json
      "glob": "^10.4.2",
      "rimraf": "^5.0.7"