twitchdev / extensions-boilerplate

Frontend only React based sample to get you started building quickly
Other
72 stars 31 forks source link

npm i gets stuck in the middle. #35

Open Watson-Sei opened 2 years ago

Watson-Sei commented 2 years ago

I tried to use this template but npm i got stuck in the middle. My environment is node v16.17.0 and npm v8.15.0, which meets the LTS requirements, but it was going to be a while before I could use it, so I am asking here.

Watson-Sei commented 2 years ago

Python dependencies were identified during the installation of node-sass. Furthermore, in the case of v16, v6.0+ was recommended instead of v4.14+, so changing the version of node-sass in package.json solved the problem.

// package.json
{
  "devDependencies": {
    -  "node-sass": "^4.13.0",
    +  "node-sass": "^6.0.0",
  },
}

I would be happy to help anyone.👋