extensions-boilerplate
extensions-boilerplate copied to clipboard
npm i gets stuck in the middle.
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.
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.👋