Skip to content

Commit 85d4004

Browse files
author
Greg Bell
committed
Update readme
1 parent 2e6b4cf commit 85d4004

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Hunts for js files in a directory tree, and runs uglify-js on them in parallel
55

66
Easily modifiable to run any job in parallel (see worker.js).
77

8-
On my machine a large test takes 2.5 hours utilising a single CPU, and 20
9-
minutes with parallel-uglifyjs.
8+
On an 8-core machine a large test takes 2.5 hours utilising a single CPU, and
9+
20 minutes with parallel-uglifyjs.
1010

1111
## Installation
1212

@@ -16,10 +16,9 @@ minutes with parallel-uglifyjs.
1616
$ ./parallel_uglifyjs small_test
1717

1818
## Help
19-
I'm pretty sure the npm packaging is wrong (I should have a bin and lib
20-
dir at least). Please raise an issue, or fork and issue a pull request if you
21-
can critique.
19+
I'm pretty sure the npm packaging is wrong. Please raise an issue, or fork and
20+
issue a pull request if you can critique.
2221

2322
Also on an Ubuntu 14.04 LTS machine (kernel version 3.13), the workers seem to
24-
get sent 10 or so jobs at a time by master.js. I'm not sure why this is. Does
25-
the kernel limit the number of open file handles per process so something small?
23+
get sent 10 or so jobs in a burst by master.js. I'm not sure why this is. Does
24+
the kernel limit the number of open file handles per process to something small?

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"name": "parallel-uglifyjs",
3-
"version": "1.0.7",
3+
"description": "Recursively trawls a directory for .js files to uglify, running one node instance per available CPU.",
4+
"license": "GPL-3.0",
5+
"version": "1.0.9",
6+
"author": "Greg Bell <[email protected]>",
47
"dependencies": {
58
"finder-on-steroids": "^0.3.1",
69
"uglify-js": "~2.4.15"

0 commit comments

Comments
 (0)