Separate: task 'BABEL' and create module for 'load-config-grunt'

pull/1082/head
Arno Roldao Junior 2016-06-23 10:27:27 -03:00
parent d0c2e69724
commit 8e15275c22
1 changed files with 15 additions and 0 deletions

15
grunt-tasks/babel.js Normal file
View File

@ -0,0 +1,15 @@
'use strict';
module.exports = function (grunt) {
return {
options: {
sourceMap: true,
presets: ['es2015']
},
dist: {
files: {
'dist/js/AdminLTE.js': 'build/js/AdminLTE.js'
}
}
};
};