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
{{ message }}
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
NODE: v11.8.0 installed with yarn (not npm)
node-sass: 4.11.0
working in a Express + CRA app, with a server/ and client/ directory (served with concurrently), my problem is only isolated to development on Mac oS 10.13 High Sierra.
It happened after a DOWNGRADE of X Code from 10.0-> 9.4.1
first, I was unable yarn start, consistently getting this
Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (72)
I found closed issue #1764 which seems to have consensus that the fix is npm rebuild node-sass is the fix. However, this 1) did not succeed at all for me (it crashed), and 2) I am using yarn not npm
The text was updated successfully, but these errors were encountered:
jasonfb
changed the title
Node Sass does not yet support your current environment (macOS 10.12.1, Node 7.0.0) [CONTEXT: YARN] {FOLLOW UP}
Node Sass does not yet support your current environment (macOS 10.12.1, Node 7.0.0) [CONTEXT: YARN] {FOLLOW UP TO #1764}
Jun 24, 2019
I ran into this problem after what I Think was caused by an X Code 10.1 -> 9.4 DOWNGRADE (I think that's what caused it). First I had some nasty problems with node-sass, then I blew away my node_modules and was then unable to yarn install again without serious problems.
then I got through that but got to
Error: Node Sass does not yet support your current environment: OS X 64-bit with Unsupported runtime (72)
I was able to fix this by switching my system over from (what I think was) brew-installed node, which annoyingly is difficult to downgrade, to nvm (https://github.com/nvm-sh/nvm)
then, once I made sure I had the right node version, I was able to yarn cache clean
and also yarn install
then I ran into a nasty rabbit hole with the dev environment only, which was simply fixed by restarting my system after which my app started booting in dev again.
nschonni
changed the title
Node Sass does not yet support your current environment (macOS 10.12.1, Node 7.0.0) [CONTEXT: YARN] {FOLLOW UP TO #1764}
[Unsupported] Installing node-sass 4.11.0 on Node 12
Jun 24, 2019
NODE: v11.8.0 installed with yarn (not npm)
node-sass: 4.11.0
working in a Express + CRA app, with a
server/
andclient/
directory (served with concurrently), my problem is only isolated to development on Mac oS 10.13 High Sierra.It happened after a DOWNGRADE of X Code from 10.0-> 9.4.1
first, I was unable
yarn start
, consistently getting thisI found closed issue #1764 which seems to have consensus that the fix is
npm rebuild node-sass
is the fix. However, this 1) did not succeed at all for me (it crashed), and 2) I am using yarn not npmNPM version (
npm -v
):6.5.0
Node version (
node -v
):v11.8.0
Node Process (
node -p process.versions
):Node Platform (
node -p process.platform
):darwin
Node architecture (
node -p process.arch
):x64
The text was updated successfully, but these errors were encountered: