mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
"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"]);
|
|
};
|