-
Notifications
You must be signed in to change notification settings - Fork 618
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[gcb] gulp-core-build-sass sometimes invokes node-gyp #1361
Comments
In the past we've had issues with packages breaking with patch updates, so to ensure the experience is consistent long after SPFx has been released, we locked down dependency versions. This is the first time I've heard of this issue happening. Which version of Node are you running and which version of SPFx are you installing? In my experience, node-sass uses prebuilt bindings instead of trying to build them itself. A long time ago, we eliminated the need for extra compiler packages from SPFx, so it shouldn't need to run node-gyp at all. |
Some simple repro steps would help this get resolved faster. |
I’m using Node 12.6.0 with npm 6.10.0, Yeoman 3.1.0, and
At some point, the npm install then outputs this:
Then at some point, it tries to do this:
This fails because that is not the correct location for MSBuild in VS 2019. That appears to be fixed in a later release of node-gyp according to this issue but that isn’t bundled with npm yet. I tried the workaround there but couldn’t get it to work, though I wouldn’t be surprised if this is because of some left-over stuff on my computer. In the end, I can reproduce this easily on my machine by doing Yes, I am aware that according to the node-sass project readme, I need to use node-sass 4.12 in order to run it on Node 12, so that is likely the source of my problems above (although I do get a compile step in earlier node-sass versions when running on Node 10). However, my problem is not with node-sass at this point, my problem is rather that I cannot use a newer version of that dependency with the |
The Returning to your issue, the real problem isn't that When this problem first came up, we did work to banish the As a workaround, on Windows you can install the windows-build-tools package, which is a shortcut for getting a working Python/C++ setup for @patmill @VesaJuvonen FYI |
I just ran
I'm using Windows 10 Pro with So this seems to be configuration specific. |
Hrmmm... Node 12 is not LTS. Unstable NodeJS versions are notoriously buggy. We don't make any attempt to offer support for them. |
Closing - please open a new issue if you experience issues on stable node12 with gulp-core-build-sass. |
I’m currently trying to use the
gulp-core-build-sass
package as part of the default SharePoint SPFx Yeoman template. Unfortunately, the dependencies of this particular package make this very painful.In my particular situation, I am having troubles installing node-sass 4.9.3, which is failing at the native compilation step with node-gyp for me, probably because I am running Visual Studio 2019 and that is not perfectly supported yet with Node and npm.
However, I am able to install node-sass 4.12.0 which was released two months ago. But because of the way the dependencies are specified, I cannot use that. Instead,
gulp-core-build-sass
will always attempt to install node-sass 4.9.3 explicitly, preventing me from installing this package and breaking the SPFx experience for me completely.Is there an actual reason why the dependencies are fixed at the patch-level? Doing this completely ignores SemVer compatibility and prevents any future fixes from being applied automatically. It’s likely also a source of the 2k vulnerabilities npm currently reports when you install the SharePoint template.
The text was updated successfully, but these errors were encountered: