Issue with gulp dev

0
I followed the steps given in: https://docs.mendix.com/howto7/front-end/style-with-gulp-and-sass, to start working with gulp and sass. After I run: gulp dev command, it opens up the browser and after sometime it gives this error:  The following tasks did not complete: browsersync  Did you forget to signal async completion?
asked
3 answers
3

Hi Kedar,

You are probably running Mendix 8.

The location of the sass is changed.

In the Gulpfile.js you have to change the following line. The web part need to be added to the path.

var sourceStyleFolder = 'theme/styles/web';

 

answered
0

“Since your task might contain asynchronous code you have to signal gulp when your task has finished executing (= "async completion").”

This wisdom I got from https://stackoverflow.com/questions/36897877/gulp-error-the-following-tasks-did-not-complete-did-you-forget-to-signal-async

answered
0

You could try to use Calypso if that fits your needs. Calypso will work with mendix 7 & 8.

See How To Use Calypso

answered