Gulp Sass brokein MX8beta3

0
I cant build my sass.. deleted node_modules, Fulfile.js, package.json, package-lock,json reinstalled gulp as mentioned from the MX8 documentation: https://docs.mendix.com/howto/front-end/set-up-sass#1-introduction anyone else experiencing this?     update from Jelte: https://github.com/mendix/ux-theming/blob/master/README.md#mendix-8-caveats   changing “var source folder” in gulpfile to this may or may not help (removed the infitineloop bug for me) var sourceFolder = './' + sourceStyleFolder + '/', sourceSassFolder = sourceFolder + 'web/sass/', sourceCssFolder = sourceFolder + 'web/css/';  
asked
4 answers
5

I have updated my original explanation on Github: https://github.com/mendix/ux-theming/blob/master/README.md#mendix-8-caveats

Long story short: You should point to the 'web' folder in styles, not styles itself. The problem is with the 'native' folder. I have been debugging this today and this solution should be the fix.

answered
0

Sorry, works for me:

answered
0

I managed to reproduce your bug, and I offer a solution:

 

The Gulp.zip file needs to be unpacked into the ROOT of the app, not into the THEME folder.

 

Then everything runs flawlessly.

 

EDIT: I use “yarn” and not npm, it’s the same thing, your command would be ‘npm run dev’

 

answered
0

I didnt even know there were different ways of people compiling their sass :D awesome to see different solutions.

Im going to do some more testing, thanks for the insights.

answered