mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Release: use chalk instead of colors for terminal colors
This commit is contained in:
parent
88046440da
commit
5f5aee3b58
@ -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"
|
||||
];
|
||||
|
@ -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();
|
||||
}
|
||||
} );
|
||||
|
Loading…
Reference in New Issue
Block a user