| Server IP : 66.29.146.62 / Your IP : 216.73.216.152 Web Server : LiteSpeed System : Linux premium231.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 User : dokkdzvi ( 925) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/dokkdzvi/morraa-ksa.store/controlPanel/assets/plugins/jquery-validation/build/ |
Upload File : |
/* Release checklist
- Run `git changelog` and edit to match previous output (this should make use of jquey-release instead)
- pull latest https://github.com/jquery/jquery-release
- run
node release.js --remote=jzaefferer/jquery-validation
- Wait a while, verify and confirm each step
-
*/
/*jshint node:true */
module.exports = function( Release ) {
function today() {
return new Date().toISOString().replace(/T.+/, "");
}
// also add version property to this
Release._jsonFiles.push( "validation.jquery.json" );
Release.define({
issueTracker: "github",
changelogShell: function() {
return Release.newVersion + " / " + today() + "\n==================\n\n";
},
generateArtifacts: function( done ) {
Release.exec( "grunt release", "Grunt command failed" );
done([
"dist/additional-methods.js",
"dist/additional-methods.min.js",
"dist/jquery.validate.js",
"dist/jquery.validate.min.js"
]);
},
// disable CDN publishing
cdnPublish: false,
// disable authors check
_checkAuthorsTxt: function() {}
});
};