client/annotviz/gulp/config.js
author rougeronj
Fri, 17 Apr 2015 11:26:26 +0200
changeset 158 c7e0e3212b4c
parent 85 eff9460bd4f2
permissions -rw-r--r--
Update gulfile : uses main-bower-files to concatenate main js of each library. Add it to dev dependencies.

var path = require('path');
var production = (process.env.NODE_ENV === 'production');

module.exports = {
    bower: 'app/lib',
    dist: production ? 'dist' : '.tmp',
    livereloadPort: 35729,
    port: 8888,
    root: path.resolve('./'),
    browser: "FirefoxDeveloperEdition",
    serverStatic: path.resolve('../../annot-server/static')
};