aboutsummaryrefslogtreecommitdiffstats
path: root/build/ensure-sizzle.js
blob: 51921731ce6bbf565bd0fae9911c41845453362e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
var fs = require( "fs" ),
	npm = require( "npm" ),
	sizzleLoc = __dirname + "/../external/sizzle/dist/sizzle.js",
	rversion = /Engine v(\d+\.\d+\.\d+(?:-\w+)?)/;

require( "colors" );

/**
 * Retrieve the latest tag of Sizzle from npm
 * @param {Function(string)} callback
 */
function getLatestSizzle( callback ) {
	npm.load(function( err, npm ) {
		if ( err ) {
			throw err;
		}
		npm.commands.info( [ "sizzle", "version" ], function( err, info ) {
			if ( err ) {
				throw err;
			}
			callback( Object.keys( info )[ 0 ] );
		});
	});
}

/**
 * Ensure the /src folder has the latest tag of Sizzle
 * @param {Object} Release
 * @param {Function} callback
 */
function ensureSizzle( Release, callback ) {
	console.log();
	console.log( "Checking Sizzle version..." );
	getLatestSizzle(function( latest ) {
		var match = rversion.exec( fs.readFileSync( sizzleLoc, "utf8" ) ),
			version = match ? match[ 1 ] : "Not Found";

		if ( version !== latest ) {
			console.log(
				"The Sizzle version in the src folder (" + version.red +
				") is not the latest tag (" + latest.green + ")."
			);
			Release.confirm( callback );
		} else {
			console.log( "Sizzle is latest (" + latest.green + ")" );
			callback();
		}
	});
}

module.exports = ensureSizzle;