how to use Robo for compile sass

Hi, there,
I would like to recompile the sass files of the theme SuitePā€¦ I tried to launch the commands of ā€˜Roboā€™ but nothing happensā€¦ eg robo listā€¦
How do you proceed? :huh:
Thanks

Proceed by telling us the version of SuiteCRM youā€™re running, the commands you ran, and the errors you gotā€¦ :slight_smile:

Do you have Robo installed?

Hello Pgr,
I use SuiteCRM version 7.11.5.
From the official SuiteCRM documentation https://docs.suitecrm.com/developer/automatedtasks/ I tried to run the following commands

 './vendor/bin/robo list'

but I get 'command not foundā€™. So I thought that roboform is not installedā€¦ I read the readme file that I found in /vendor/consolidation/robo/ and I launched the global installation mendiante composer ā€™

composer require consolidation/robo:~1

'.
Now if I get into the root of SuiteCRM and run the command

vendor/bin/robo list 

I get correctly the help to use roboform (Version 1.4.10).
If always from SuiteCRM root I run the command

vendor/bin/robo build:suitep

I get the following error:


 There are no commands defined in the "build" namespace.


āžœ                                                                               
Requested RoboFile `//RoboFile.php` is invalid, please provide valid absolute path to load Robofile.
āžœ                                                                               
āžœ                                                                               
āžœ Robo is not initialized here. Please run `robo init` to create a new RoboFile.

What am I doing wrong? :huh:
Thanks

I am not very familiar with this, but since there have been recent PRā€™s about this, I would suggest upgrading to the latest SuiteCRM, or at least grabbing the code from the latest PRā€™s affecting the robo directoryā€¦

This directory view will give you some clues

https://github.com/salesagility/SuiteCRM/tree/hotfix-7.10.x/lib/Robo/Plugin/Commands

Thank you pgr!