https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 9cdfd18f5027fdd0fec87a0982771c87d6a5640e authored by Dannon on 05 August 2020, 14:05:28 UTC
Merge pull request #10069 from natefoo/semicolon-uwsgi-pass
Tip revision: 9cdfd18
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