Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Gruntfile.js « q-1.4.1 « lib « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d764dd30ffd9445f3df6a98af7699657faf6f678 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"use strict";

module.exports = function (grunt) {
    grunt.loadNpmTasks("grunt-contrib-uglify");

    grunt.initConfig({
        uglify: {
            "q.min.js": ["q.js"],
            options: {
                report: "gzip"
            }
        }
    });

    grunt.registerTask("default", ["uglify"]);
};