integration wip: copy Bootstrap to build directory on build
authorAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Thu, 12 Dec 2013 14:21:08 +0000 (15:21 +0100)
committerAleksander Łukasz <aleksander.lukasz@nowoczesnapolska.org.pl>
Sun, 15 Dec 2013 21:32:51 +0000 (22:32 +0100)
Gruntfile.js
package.json

index f338192..e3059a9 100644 (file)
@@ -34,14 +34,22 @@ module.exports = function(grunt) {
             options: {
                 jshintrc: '.jshintrc'
             }
             options: {
                 jshintrc: '.jshintrc'
             }
+        },
+        copy: {
+          resources: {
+            files: [
+              {src: ['libs/bootstrap/**'], dest: build_output_dir+'/'},
+            ]
+          }
         }
     });
 
     grunt.loadNpmTasks('grunt-contrib-requirejs');
     grunt.loadNpmTasks('grunt-contrib-less');
     grunt.loadNpmTasks('grunt-contrib-jshint');
         }
     });
 
     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
     grunt.registerTask('lint', ['jshint']);
     grunt.registerTask('default', ['build']);
 };
\ No newline at end of file
index cf58cfb..7d428f7 100644 (file)
@@ -5,6 +5,7 @@
     "grunt": "~0.4.1",
     "grunt-contrib-requirejs": "~0.4.1",
     "grunt-contrib-less": "~0.6.1",
     "grunt": "~0.4.1",
     "grunt-contrib-requirejs": "~0.4.1",
     "grunt-contrib-less": "~0.6.1",
-    "grunt-contrib-jshint": "~0.7.2"
+    "grunt-contrib-jshint": "~0.7.2",
+    "grunt-contrib-copy": "~0.4.1"
   }
 }
   }
 }