[TASK] Inline style and icon css and es6-shim

This commit is contained in:
Xaver Maierhofer 2016-05-22 22:13:46 +02:00 committed by Milan Pässler
commit c7b58d5743
4 changed files with 16 additions and 4 deletions

View file

@ -85,6 +85,16 @@ module.exports = function (grunt) {
}
}
},
inline: {
dist: {
options: {
cssmin: true,
uglify: true
},
src: "build/index.html",
dest: "build/index.html"
}
},
"bower-install-simple": {
options: {
directory: "<%=bowerdir%>",
@ -118,4 +128,5 @@ module.exports = function (grunt) {
grunt.loadNpmTasks("grunt-contrib-requirejs");
grunt.loadNpmTasks("grunt-sass");
grunt.loadNpmTasks("grunt-postcss");
grunt.loadNpmTasks("grunt-inline");
};