1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 22:47:43 +00:00
Files
matomo/tests/lib/q-1.4.1/Gruntfile.js

17 خطوط
312 B
JavaScript
Vendored

"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"]);
};