X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/349846f255ed15346c72136acc7c2771d9ebc9af..f20b2ef1a63ca42202fb063a1c0c3c06cb65e87e:/Gruntfile.js 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