Compile Bootstrap CSS on our own, include it into build CSS file.
[fnpeditor.git] / Gruntfile.js
index f338192..5c85ee0 100644 (file)
@@ -24,7 +24,8 @@ module.exports = function(grunt) {
             production: {
                 options: {
                     paths: [''],
-                    yuicompress: true
+                    cleancss: true,
+                    relativeUrls: true
                 },
                 files: less_files,
             },
@@ -34,14 +35,22 @@ module.exports = function(grunt) {
             options: {
                 jshintrc: '.jshintrc'
             }
+        },
+        copy: {
+          resources: {
+            files: [
+              {src: ['libs/bootstrap/img/**'], dest: build_output_dir+'/'},
+            ]
+          }
         }
     });
 
     grunt.loadNpmTasks('grunt-contrib-requirejs');
     grunt.loadNpmTasks('grunt-contrib-less');
     grunt.loadNpmTasks('grunt-contrib-jshint');
+    grunt.loadNpmTasks('grunt-contrib-copy');
 
-    grunt.registerTask('build', ['requirejs', 'less:production']);
+    grunt.registerTask('build', ['requirejs', 'less:production', 'copy:resources']);
     grunt.registerTask('lint', ['jshint']);
     grunt.registerTask('default', ['build']);
 };
\ No newline at end of file