Skip to content
This repository has been archived by the owner on Jun 15, 2021. It is now read-only.

Commit

Permalink
Merge pull request #100 from pvorb/patch-1
Browse files Browse the repository at this point in the history
Library size unit should be 'kB', 'kByte' or 'K'
  • Loading branch information
fat committed Nov 25, 2011
2 parents 1a4ff4e + e2037a4 commit 368f5d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ender.file.js
Expand Up @@ -97,7 +97,7 @@ ENDER.file = module.exports = {

function writeSize (data) {
console.log('Your current build type is ' + ('"' + type + '"').yellow)
console.log('Your current library size is ' + ((Math.round((data.length/1024) * 10) / 10) + '').yellow + ' kb\n')
console.log('Your current library size is ' + ((Math.round((data.length/1024) * 10) / 10) + '').yellow + ' kB\n')
callback && callback()
}
}
Expand Down

0 comments on commit 368f5d1

Please sign in to comment.