Skip to content

Commit

Permalink
version bump v0.3.2. removes white text
Browse files Browse the repository at this point in the history
  • Loading branch information
sintaxi committed Sep 18, 2014
1 parent 76a1fc7 commit 17a7ac8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions lib/middleware/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ var auth = module.exports = function(req, next){
properties: {
email: {
required: true,
description: "email:".white,
description: "email:",
format: "email"
},
password: {
description: "password:".white,
description: "password:",
required: true,
hidden: true
}
Expand Down
6 changes: 3 additions & 3 deletions lib/middleware/confirm.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ var prompt = helpers.prompt
module.exports = function(req, next){

console.log()
console.log(" authenticated:".white, !!req.creds ? req.creds.email.green : "Not Found")
console.log(" project:".white, req.project.green)
console.log(" domain:".white, req.domain.green)
console.log(" authenticated:", !!req.creds ? req.creds.email.green : "Not Found")
console.log(" project:", req.project.green)
console.log(" domain:", req.domain.green)
console.log()

prompt.get({ name: "confirm", message: "Are you sure you wish to deploy?", default: "Y/n" }, function(err, result){
Expand Down
2 changes: 1 addition & 1 deletion lib/middleware/domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = function(req, next){
function domain(suggestion, next){
prompt.get({
name: "domain",
description: "domain:".white,
description: "domain:",
message: "please specify a valid domain to deploy to...",
default: suggestion,
conform: function(val){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "surge",
"version": "0.3.1",
"version": "0.3.2",
"description": "the `npm` of web publishing",
"main": "./lib/surge.js",
"scripts": {
Expand Down

0 comments on commit 17a7ac8

Please sign in to comment.