From f20b2ef1a63ca42202fb063a1c0c3c06cb65e87e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20=C5=81ukasz?= Date: Thu, 12 Dec 2013 15:21:08 +0100 Subject: [PATCH] integration wip: copy Bootstrap to build directory on build --- Gruntfile.js | 10 +++++++++- package.json | 3 ++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index f338192..e3059a9 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -34,14 +34,22 @@ module.exports = function(grunt) { 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-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 diff --git a/package.json b/package.json index cf58cfb..7d428f7 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "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" } } -- 2.20.1