checkGitStatus,
setReleaseVersion,
gruntBuild,
- createTag,
makeReleaseCopies,
copyTojQueryCDN,
buildGoogleCDN,
buildMicrosoftCDN,
+ createTag,
setNextVersion,
pushToGithub,
- publishToNpm,
+ // publishToNpm,
exit
);
fs.writeFileSync( "package.json", JSON.stringify( pkgClone, null, "\t" ) );
fs.unlinkSync( ".gitignore" );
// Add files to be committed
- git( [ "add", "package.json", "dist", sizzleLoc ], function() {
+ git( [ "add", "package.json", devFile, minFile, mapFile, sizzleLoc ], function() {
// Remove unneeded files
git( [ "rm", "-r",
"build",
"Gruntfile.js",
"README.md"
], function() {
- git( [ "commit", "-a", "-m", releaseVersion ], next, debug );
+ git( [ "commit", "-m", releaseVersion ], next, debug );
}, debug );
}, debug );
}
/* NPM
---------------------------------------------------------------------- */
+/*
function publishToNpm( next ) {
// Only publish the master branch to NPM
// You must be the jquery npm user for this not to fail
}, debug || skipRemote );
}, debug );
}, debug);
-}
+}*/
/* Death
---------------------------------------------------------------------- */