]> git.immae.eu Git - perso/Immae/Projets/Buildbot/buildslist.git/blob - guanlecoja/config.coffee
Add bower.json for nix
[perso/Immae/Projets/Buildbot/buildslist.git] / guanlecoja / config.coffee
1 ### ###############################################################################################
2 #
3 # This module contains all configuration for the build process
4 #
5 ### ###############################################################################################
6 ANGULAR_TAG = "~1.5.3"
7
8 config =
9
10 ### ###########################################################################################
11 # Name of the plugin
12 ### ###########################################################################################
13 name: 'buildslist'
14
15
16 ### ###########################################################################################
17 # Directories
18 ### ###########################################################################################
19 dir:
20 # The build folder is where the app resides once it's completely built
21 build: 'buildbot_buildslist/static'
22
23 ### ###########################################################################################
24 # Bower dependencies configuration
25 ### ###########################################################################################
26 # also add the dependencies in bower.json for nix !
27 bower:
28 testdeps:
29 jquery:
30 version: '2.1.1'
31 files: 'dist/jquery.js'
32 angular:
33 version: ANGULAR_TAG
34 files: 'angular.js'
35 lodash:
36 version: "~2.4.1"
37 files: 'dist/lodash.js'
38 "angular-mocks":
39 version: ANGULAR_TAG
40 files: "angular-mocks.js"
41 "buildbot-data":
42 version: '~2.1.0'
43 files: 'dist/buildbot-data.js'
44
45 buildtasks: ['scripts', 'styles', 'fonts', 'imgs',
46 'index', 'tests', 'generatedfixtures', 'fixtures']
47
48 karma:
49 # we put tests first, so that we have angular, and fake app defined
50 files: ["tests.js", "scripts.js", 'fixtures.js', "mode-python.js"]
51 module.exports = config