Release: use chalk instead of colors for terminal colors

This commit is contained in:
Timmy Willison 2015-11-12 13:23:53 -05:00
parent 88046440da
commit 5f5aee3b58
2 changed files with 6 additions and 4 deletions

View File

@ -56,5 +56,6 @@ module.exports = function( Release ) {
module.exports.dependencies = [
"archiver@0.14.2",
"shelljs@0.2.6",
"npm@2.3.0"
"npm@2.3.0",
"chalk@1.1.1"
];

View File

@ -1,5 +1,6 @@
var fs = require( "fs" ),
npm = require( "npm" ),
chalk = require( "chalk" ),
sizzleLoc = __dirname + "/../../external/sizzle/dist/sizzle.js",
rversion = /Engine v(\d+\.\d+\.\d+(?:-[-\.\d\w]+)?)/;
@ -37,12 +38,12 @@ function ensureSizzle( Release, callback ) {
// colors is inherited from jquery-release
console.log(
"The Sizzle version in the src folder (" + version.red +
") is not the latest tag (" + latest.green + ")."
"The Sizzle version in the src folder (" + chalk.red( version ) +
") is not the latest tag (" + chalk.green( latest ) + ")."
);
Release.confirm( callback );
} else {
console.log( "Sizzle is latest (" + latest.green + ")" );
console.log( "Sizzle is latest (" + chalk.green( latest ) + ")" );
callback();
}
} );