@@ -6,11 +6,11 @@ const pkg = require('./package');
6
6
sade ( 'sirv [dir]' )
7
7
. version ( pkg . version )
8
8
. describe ( 'Run a static file server' )
9
- . example ( 'build --cors --port 8080 ' )
9
+ . example ( 'build --cors --port 8888 ' )
10
10
. example ( 'public --quiet --etag --maxage 31536000 --immutable' )
11
11
. example ( 'public --http2 --key priv.pem --cert cert.pem' )
12
12
. example ( 'public -qeim 31536000' )
13
- . example ( '--port 8080 --etag' )
13
+ . example ( '--port 8888 --etag' )
14
14
. example ( '--host --dev' )
15
15
. option ( '-D, --dev' , 'Enable "dev" mode' )
16
16
. option ( '-e, --etag' , 'Enable "ETag" header' )
@@ -28,7 +28,7 @@ sade('sirv [dir]')
28
28
. option ( '-I, --ignores' , 'Any URL pattern(s) to ignore "index.html" assumptions' )
29
29
. option ( '-q, --quiet' , 'Disable logging to terminal' )
30
30
. option ( '-H, --host' , 'Hostname to bind' , 'localhost' )
31
- . option ( '-p, --port' , 'Port to bind' , 5000 )
31
+ . option ( '-p, --port' , 'Port to bind' , 8080 )
32
32
. action ( boot )
33
33
. parse ( process . argv , {
34
34
default : {
0 commit comments