From d7363ae922fd70c5f40d7887a4cae5284db03c7b Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Fri, 3 Aug 2018 13:37:36 -0400 Subject: [PATCH] Update help message for public-url option (#1846) Just a small documentation change -- as of #1040, the default value for `--public-url` is `/`, not the `--out-dir` option anymore. --- packages/core/parcel/src/cli.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/parcel/src/cli.js b/packages/core/parcel/src/cli.js index 1f57461b6e34..01207a816c2d 100755 --- a/packages/core/parcel/src/cli.js +++ b/packages/core/parcel/src/cli.js @@ -39,7 +39,7 @@ program ) .option( '--public-url ', - 'set the public URL to serve on. defaults to the same as the --out-dir option' + 'set the public URL to serve on. defaults to "/"' ) .option('--global ', 'expose your module through a global variable') .option('--no-hmr', 'disable hot module replacement') @@ -77,7 +77,7 @@ program ) .option( '--public-url ', - 'set the public URL to serve on. defaults to the same as the --out-dir option' + 'set the public URL to serve on. defaults to "/"' ) .option('--global ', 'expose your module through a global variable') .option( @@ -126,7 +126,7 @@ program ) .option( '--public-url ', - 'set the public URL to serve on. defaults to the same as the --out-dir option' + 'set the public URL to serve on. defaults to "/"' ) .option('--global ', 'expose your module through a global variable') .option('--no-minify', 'disable minification')