From bf1f1f479980fa2680b3616f48fcfad8fd00f39c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Thu, 7 Mar 2019 09:39:41 +0100 Subject: Initial commit --- guanlecoja/config.coffee | 50 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 guanlecoja/config.coffee (limited to 'guanlecoja') diff --git a/guanlecoja/config.coffee b/guanlecoja/config.coffee new file mode 100644 index 0000000..5ad71b7 --- /dev/null +++ b/guanlecoja/config.coffee @@ -0,0 +1,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 -- cgit v1.2.3