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!