Advertisement
Guest User

Untitled

a guest
May 29th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. module.exports = function(grunt) {
  2.  
  3. grunt.initConfig({
  4.  
  5. bower: {
  6. install: {
  7. options: {
  8. targetDir: 'src/main/resources/js/vendor',
  9. layout: 'byComponent'
  10. }
  11. }
  12. }
  13. });
  14.  
  15. // Load NPM tasks
  16. grunt.loadNpmTasks('grunt-bower-task');
  17.  
  18. // Default Task
  19. grunt.registerTask('default', ['bower']);
  20. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement