Update UI build system

* Faster build times
* Smaller bundle sizes
* Adjust paths
* Cleanup npm dependencies
* Remove unneded Grunt tasks
This commit is contained in:
gconsidine
2017-09-07 18:09:14 -04:00
parent b565fd2ec1
commit c57c17546e
81 changed files with 1212 additions and 7104 deletions

View File

@@ -1,9 +1,11 @@
function atActionGroup (pathService) {
const templateUrl = require('@components/action/action-group.partial.html');
function atActionGroup () {
return {
restrict: 'E',
replace: true,
transclude: true,
templateUrl: pathService.getPartialPath('components/action/action-group'),
templateUrl,
scope: {
col: '@',
pos: '@'
@@ -11,6 +13,4 @@ function atActionGroup (pathService) {
};
}
atActionGroup.$inject = ['PathService'];
export default atActionGroup;