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
"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"
}
}