Comparing version 0.0.3 to 0.0.4
@@ -5,3 +5,3 @@ { | ||
"description": "Command-line progress bar and progress metrics. Helps you measure the 'pace' of a long-running script.", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"homepage": "http://cantina.github.com", | ||
@@ -8,0 +8,0 @@ "repository": { |
@@ -19,6 +19,7 @@ Pace | ||
Running the following code: | ||
``` | ||
```js | ||
var total = 50000, | ||
count = 0, | ||
pace = require('../')(total); | ||
pace = require('pace')(total); | ||
@@ -50,3 +51,3 @@ while (count++ < total) { | ||
``` | ||
```js | ||
require('pace')(100); | ||
@@ -53,0 +54,0 @@ |
24893
125