From 401a8d100f61a32baae60482c29f231e3fbbb655 Mon Sep 17 00:00:00 2001 From: Tom Canac Date: Thu, 30 Mar 2017 19:26:15 -0400 Subject: [PATCH 1/4] Fix npm to yarn --- 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 3622e29b418..634432824d7 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 tag. - To begin the development, run `npm start`. - To create a production bundle, use `npm run build`. + To begin the development, run `yarn start`. + To create a production bundle, use `yarn run build`. --> From 0960b4b915b53d6b6d205f8ea5d1f9f79aab7ade Mon Sep 17 00:00:00 2001 From: Tom Canac Date: Tue, 4 Apr 2017 17:16:42 -0400 Subject: [PATCH 2/4] yarn & npm --- 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 634432824d7..6a744590ea4 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 tag. - To begin the development, run `yarn start`. - To create a production bundle, use `yarn run build`. + To begin the development, run `yarn start` or `npm start`. + To create a production bundle, use `yarn build` or ``npm run build. --> From c7aef0ceddaa6d50ff8994745d9227982ff46f4a Mon Sep 17 00:00:00 2001 From: Tom Canac Date: Tue, 4 Apr 2017 17:18:04 -0400 Subject: [PATCH 3/4] Update index.html --- packages/react-scripts/template/public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-scripts/template/public/index.html b/packages/react-scripts/template/public/index.html index 6a744590ea4..97a252fce1a 100644 --- a/packages/react-scripts/template/public/index.html +++ b/packages/react-scripts/template/public/index.html @@ -25,7 +25,7 @@ The build step will place the bundled scripts into the tag. To begin the development, run `yarn start` or `npm start`. - To create a production bundle, use `yarn build` or ``npm run build. + To create a production bundle, use `yarn build` or `npm run build`. --> From c99bd5268832e03c63a1074ff89344c556b92616 Mon Sep 17 00:00:00 2001 From: Joe Haddad Date: Wed, 5 Apr 2017 13:27:42 -0400 Subject: [PATCH 4/4] 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 97a252fce1a..7f3e83f4e43 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 tag. - To begin the development, run `yarn start` or `npm start`. - To create a production bundle, use `yarn build` or `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`. -->