You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please select the area your bug applies to. (Multiple selections are Possible. You can leave blank if you're not sure.)
Development dependencies (node-sass and/or node-gyp)
Describe the bug
This project currently doesn't support node 22 and/or python 3.12 for the package lock file.
To Reproduce
After pulling this git repo and following the developer docs, you'll be stuck at executing yarn if using node 22 or python 3.12 on your machine. It will raises errors when running node-sass/node-gyp for yarn.
Discussions
I found the discussion about error /node_modules/node-sass: Command failed on the stackoverflow.
After downgrading node to v17 and python to v3.11, I finally can run yarn. I just leave a record here for other developers.
Please select the area your bug applies to. (Multiple selections are Possible. You can leave blank if you're not sure.)
Development dependencies (
node-sass
and/ornode-gyp
)Describe the bug
This project currently doesn't support
node 22
and/orpython 3.12
for the package lock file.To Reproduce
After pulling this git repo and following the developer docs, you'll be stuck at executing
yarn
if usingnode 22
orpython 3.12
on your machine. It will raises errors when runningnode-sass
/node-gyp
foryarn
.Discussions
I found the discussion about
error /node_modules/node-sass: Command failed
on the stackoverflow.After downgrading node to v17 and python to v3.11, I finally can run
yarn
. I just leave a record here for other developers.node-sass
needs to match to the version of node.distutils
package is removed in python version3.12
.Maybe we should update those dependencies for latest node and python.
The text was updated successfully, but these errors were encountered: