mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-08 17:07:03 +03:00
Promises (first look)
Thread dropdown Small fixes
This commit is contained in:
parent
dd41d30f9b
commit
c23ba31e17
61 changed files with 12442 additions and 130 deletions
16
vendors/Q/Gruntfile.js
vendored
Normal file
16
vendors/Q/Gruntfile.js
vendored
Normal file
|
|
@ -0,0 +1,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"]);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue