From c83ee7a3029df6e0f994507a5aeb6c177be05b28 Mon Sep 17 00:00:00 2001 From: Tom Canac <tmos@users.noreply.github.com> Date: Wed, 5 Apr 2017 13:28:32 -0400 Subject: [PATCH] Suggest Yarn in HTML template (#1911) * Fix npm to yarn * yarn & npm * Update index.html * Switch ordering of suggestion We should suggest NPM first for new users. --- packages/react-scripts/template/public/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-scripts/template/public/index.html b/packages/react-scripts/template/public/index.html index 3622e29b4..7f3e83f4e 100644 --- a/packages/react-scripts/template/public/index.html +++ b/packages/react-scripts/template/public/index.html @@ -24,8 +24,8 @@ You can add webfonts, meta tags, or analytics to this file. The build step will place the bundled scripts into the <body> tag. - To begin the development, run `npm start`. - To create a production bundle, use `npm run build`. + To begin the development, run `npm start` or `yarn start`. + To create a production bundle, use `npm run build` or `yarn build`. --> </body> </html> -- GitLab