mirror of
https://github.com/jquery-validation/jquery-validation.git
synced 2025-12-14 20:35:47 +01:00
63 lines
2.3 KiB
JavaScript
63 lines
2.3 KiB
JavaScript
/* Release checklist
|
|
- Run `git changelog` and edit to match previous output (this should make use of jquey-release instead)
|
|
- make sure the correct 'x.y.z-pre' version is defined in package.json
|
|
- `cd jquery-release` into your local https://github.com/jquery/jquery-release fork
|
|
- `git pull` latest https://github.com/jquery/jquery-release
|
|
- disable _generateChangelog task in release.js (BOOOO), by commenting this lines: https://github.com/jquery/jquery-release/blob/a9823df8a5dff4c96d1f6645b09daa591adc2f06/release.js#L43-L44
|
|
- run
|
|
node release.js --remote=jquery-validation/jquery-validation --branch=master
|
|
- Wait a while, verify and confirm each step
|
|
- Create GitHub release: Pick the new tag, add changelog, upload zip (from __release/repo/dist/*.zip)
|
|
- Upload to NPM
|
|
cd into your local jquery-validation fork
|
|
git fetch --tags upstream
|
|
git checkout tags/X.YY.Z
|
|
npm publish
|
|
- double check NPM for new release https://www.npmjs.com/package/jquery-validation
|
|
- Update MS CDN (Ping Chris Sfanos)
|
|
- Check jsdelivr CDN: new git tags are automatically pulled, tested & merged via https://github.com/jsdelivr/jsdelivr/pulls
|
|
- Check cdnjs CDN: new git tags are automatically committed into https://github.com/cdnjs/cdnjs/commits/master or ping @cdnjs
|
|
- Update validation-content/pages/index.html (may have to hold off on CDN updates until available)
|
|
- Write blog post: Some highlights, changelog, download links
|
|
*/
|
|
|
|
/*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( "npx grunt release", "Grunt command failed" );
|
|
// Keep this list of files in sync with package.json's files key
|
|
done([
|
|
"dist/localization/",
|
|
"dist/additional-methods.js",
|
|
"dist/additional-methods.min.js",
|
|
"dist/jquery.validate.js",
|
|
"dist/jquery.validate.min.js",
|
|
|
|
// The sub-resource integrity hashes of the distribution files
|
|
"dist/jquery-validation-sri.json"
|
|
]);
|
|
},
|
|
|
|
cdnPublish: false,
|
|
npmPublish: true,
|
|
|
|
// disable authors check
|
|
_checkAuthorsTxt: function() {}
|
|
});
|
|
|
|
};
|