���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/luckymerchan/layout/default/node_modules/jquery-form/ |
module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), meta: { banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd HH:MM:ss") %> */' }, githooks: { options: { hashbang: '#!/bin/sh', template: 'install/template/shell.hb', startMarker: '# GRUNT-GITHOOKS START', endMarker: '# GRUNT-GITHOOKS END' }, all: { 'pre-commit': 'pre-commit' } }, eslint: { options: { quiet: true }, target: ['src/**/*.js'] }, mocha: { all: { src: ['test/*.html'], }, options: { run: true, growlOnSuccess: false } }, // Minifies JS files uglify: { options: { output: { comments: /^!|@preserve|@license|@cc_on/i }, sourceMap: true, footer: '\n' }, dist: { files: [{ expand: true, cwd: 'src', src: ['*.js','!*.min.js'], dest: 'dist', ext: '.min.js', extDot: 'last' }] } } }); // Load tasks grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-mocha'); grunt.loadNpmTasks('grunt-eslint'); grunt.loadNpmTasks('grunt-githooks'); // Default task. grunt.registerTask('lint', [ 'eslint' ]); grunt.registerTask('test', [ 'lint', 'mocha' ]); grunt.registerTask('pre-commit', [ 'test' ]); grunt.registerTask('default', [ 'test', 'uglify' ]); };