Emerjoin / Hi-Framework-features

Java EE Framework
5 stars 1 forks source link

Integrate YUI Compressor (CSS and JavaScript minifyer) #34

Closed emjunior258 closed 8 years ago

emjunior258 commented 8 years ago

https://github.com/yui/yuicompressor/

emjunior258 commented 8 years ago

Consider that angular code will be minified. Dependency injection should be mate using $inject annotation. .

var MyController = function($scope, greeter) {
  // ...
}
MyController.$inject = ['$scope', 'greeter'];
someModule.controller('MyController', MyController);