PHP Classes

File: WITheme/WICMS/admin/js/plugins/textEditor/tinymce_4.2.6_dev/tinymce/tools/tasks/amdlc.js

Recommend this page to a friend!
  Classes of Jules Warner   WICMS   WITheme/WICMS/admin/js/plugins/textEditor/tinymce_4.2.6_dev/tinymce/tools/tasks/amdlc.js   Download  
File: WITheme/WICMS/admin/js/plugins/textEditor/tinymce_4.2.6_dev/tinymce/tools/tasks/amdlc.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WICMS
Database driven content management system with PDO
Author: By
Last change:
Date: 7 years ago
Size: 607 bytes
 

Contents

Class file image Download
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); }); };