From 074dd63323058d39b1923e772fcf5f5c2d797174 Mon Sep 17 00:00:00 2001 From: Dan Abramov <dan.abramov@gmail.com> Date: Sun, 17 Jul 2016 18:22:17 +0100 Subject: [PATCH] Wordsmith --- scripts/build.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/scripts/build.js b/scripts/build.js index 09ef8bdaf..00bd29c63 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -25,5 +25,12 @@ webpack(config).run(function(err, stats) { process.exit(1); } - console.log('Build successfully generated in the build/ folder'); + console.log('Successfully generated a bundle in the build folder!'); + console.log(); + console.log('You can now serve it with any static server:'); + console.log(' cd build'); + console.log(' python -m SimpleHTTPServer 9000'); + console.log(' open http://localhost:9000'); + console.log(); + console.log('It is optimized and ready to be deployed for production.'); }); -- GitLab