/home/aqcert/public_html/admin/tinymce/tools/tasks
NameSizeModeActions
amdlc.js6070644editdlrm
bundle.js17080644editdlrm
moxiezip.js24330644editdlrm
skin.js23330644editdlrm
Edit: /home/aqcert/public_html/admin/tinymce/tools/tasks/amdlc.js (607B)
module.exports = function(grunt) { grunt.registerMultiTask("amdlc", "Compiles AMD modules to libraries.", function() { var config = grunt.config([this.name, this.target]).options; config.reporter = { level: "debug", debug: function(message) { grunt.log.debug(message); }, info: function(message) { grunt.log.ok(message); }, warning: function(message) { grunt.fail.warn(message); }, error: function(message) { grunt.log.error(message); }, fatal: function(message) { grunt.log.error(message); } }; require("amdlc").compile(config); }); };