summaryrefslogtreecommitdiff
path: root/guanlecoja/config.coffee
blob: 5ad71b76d8ac7d179fc5e32ab2b8a6b900d9af9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
### ###############################################################################################
#
#   This module contains all configuration for the build process
#
### ###############################################################################################
ANGULAR_TAG = "~1.5.3"

config =

    ### ###########################################################################################
    #   Name of the plugin
    ### ###########################################################################################
    name: 'buildslist'


    ### ###########################################################################################
    #   Directories
    ### ###########################################################################################
    dir:
        # The build folder is where the app resides once it's completely built
        build: 'buildbot_buildslist/static'

    ### ###########################################################################################
    #   Bower dependencies configuration
    ### ###########################################################################################
    bower:
        testdeps:
            jquery:
                version: '2.1.1'
                files: 'dist/jquery.js'
            angular:
                version: ANGULAR_TAG
                files: 'angular.js'
            lodash:
                version: "~2.4.1"
                files: 'dist/lodash.js'
            "angular-mocks":
                version: ANGULAR_TAG
                files: "angular-mocks.js"
            "buildbot-data":
                version: '~2.1.0'
                files: 'dist/buildbot-data.js'

    buildtasks: ['scripts', 'styles', 'fonts', 'imgs',
        'index', 'tests', 'generatedfixtures', 'fixtures']

    karma:
        # we put tests first, so that we have angular, and fake app defined
        files: ["tests.js", "scripts.js", 'fixtures.js', "mode-python.js"]
module.exports = config