https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 0182d8d0bec3cf78401434e5c07b012eabcda7e3 authored by Martin Cech on 13 March 2018, 15:45:07 UTC
Update version to 18.01
Tip revision: 0182d8d
GruntFile.js
module.exports = function(grunt) {
    var GALAXY_PATHS = {
        dist: "../static/scripts",
        maps: "../static/maps",
        // this symlink allows us to serve uncompressed scripts in DEV_PATH for use with sourcemaps
        srcSymlink: "../static/src"
    };
    grunt.config.set("app", "galaxy");
    grunt.config.set("paths", GALAXY_PATHS);
    // see the sub directory grunt-tasks/ for individual task definitions
    grunt.loadTasks("grunt-tasks");
    grunt.registerTask("default", ["style"]);
};
back to top