mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-25 07:16:21 +08: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"]);
|
|
};
|