sass gulp issue

0
Hi everyone, I`m trying to style my project. When I try to run the command: “gulp dev” , I get an error: ( I try this in powershell, as well as, cmd) code: 'MODULE_NOT_FOUND',   requireStack: [     'C:\\Users\\mydir\\Documents\\Mendix\\my-project\\gulpfile.js',     'C:\\Users\\mydir\\AppData\\Roaming\\npm\\node_modules\\gulp-cli\\lib\\versioned\\^4.0.0\\index.js',     'C:\\Users\\mydir\\AppData\\Roaming\\npm\\node_modules\\gulp-cli\\index.js',     'C:\\Users\\mydir\\AppData\\Roaming\\npm\\node_modules\\gulp-cli\\bin\\gulp.js'   Does anyone have an idea what the problem is. mendix version is 8.4.1 btw, if I try this command on another project, it does work fine there.   
asked
3 answers
0

Please check https://docs.mendix.com/howto/front-end/calypso

answered
0

As Andries mentioned, you can use Calypso, which doesn't require you to install any files.

Mendix decided to not support ux-theming anymore, the package I created for styling. You can find the old documentation for this on https://github.com/mendix/ux-theming. If you still want to use ux-theming, you need to follow step 1-4 (Installation, see documentation) for your specific project.

answered
0

Simplest way to get sass running is via cmd, go to theme/styles/web and give this command: 

sass --watch sass:css

 

answered