summaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
blob: 272eccfb96f9e7dd215523a82eec45da08e3188a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Gruntfile
//

'use strict';

module.exports = function(grunt) {
    grunt.initConfig({
        pkg: grunt.file.readJSON('package.json'),
        bower: {
            install: {
                options: {
                    install: true,
                    cleanTargetDir: true,
                    verbose: true,
                    targetDir: 'media/js/vendor',
                    layout: 'byComponent'
                }
            }
        }
    });
    grunt.loadNpmTasks('grunt-bower-task');
};