0

Is it possible in Eclipse to use Ant for post-processing in order to optimize Php/Html/Css/Javascript code?

All sorts of user code can be optimized (comment removal, minification, optimization, image minification etc)

My plan is to make an environment where programmers sort-of compile(optimize) the code before sending it to web server (apache lets say).

Odys
  • 8,951
  • 10
  • 69
  • 111

1 Answers1

2

Yes, it's possible. Right-click on your project, select "Properties...", then go to the Builders configuration panel, add a new Ant builder, and select which targets must be run at which moment.

JB Nizet
  • 678,734
  • 91
  • 1,224
  • 1,255