SCSS Web Essentials Compilation Error

I am trying to compile SCSS files in projetc using Visual Studio 2013 and Web Essentials. Here is the error I get in the visual studio output window:

Something went wrong reaching: http://127.0.0.1:52658/?service=SCSS&sourceFileName=C:\Development\KnockApp\KnockApp\KnockApp.Web\Content\scss\directory.scss&targetFileName=C:\Users\IEUser\AppData\Local\Temp\3510b388-06aa-48bb-b517-e1442399e924.css&mapFileName=C:\Users\IEUser\AppData\Local\Temp\3510b388-06aa-48bb-b517-e1442399e924.css.map&precision=5&outputStyle=expanded& SCSS: directory.scss compilation failed: The service failed to respond to this request Possible cause: Syntax Error! 

SCSS files come from a third-party theme, and they use Compass, I included compass files in my project. I also have node and node-sass installed on the machine. Any thoughts?

+6
source share
1 answer

Received the same error and the solution found. Web Essentials uses node.exe to build SCSS, but this service crashes when you try to compile part of the partial SCSS with unresolved dependencies. After that, the message “Something went wrong” is written in Visual Studio in order to eliminate this error, just to eliminate all “node.exe” and again create the main SCSS file.

+11
source

Source: https://habr.com/ru/post/979977/


All Articles