cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to create ant target for grunt integration

0 Kudos
415

I want to create ant target e.g. ant buildUI for compiling and generating *.css and rtl files by using Grunt. So it will be easy to everyone for compiling and generating css and rtl files.

Does any one have integrated Grunt or have idea about it.

I appreciate your help in advance.

Thanks and Regards,
.

Accepted Solutions (1)

Accepted Solutions (1)

lsravanthi
Member

Hi Swapnil

we can create new ant task inside build.xml file like below

Executable path will be grunt cmd path.

  <target name="ant buildUI" description="builds css and js files">
     <exec executable="\AppSense\AppData\npm\grunt.cmd" dir=""/>
    </target>

Answers (0)