From b93a144387900ee20e776169e5448b59463467b4 Mon Sep 17 00:00:00 2001 From: Suhas Karanth Date: Tue, 21 Nov 2017 08:54:06 +0530 Subject: [PATCH 1/2] docs(README): Update usage to init from develop branch --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index a4b24503a5..4d6e1d8fb3 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,12 @@ $ npm install $ npm run dev ``` +If you wish to use the latest version of the webpack template, do the following instead: + +``` bash +$ vue init webpack#develop my-project +``` + The development server will run on port 8080 by default. If that port is already in use on your machine, the next free port will be used. ## What's Included From 9167d7e1d42ed62f036a7923a468ab31cb0fd168 Mon Sep 17 00:00:00 2001 From: Suhas Karanth Date: Tue, 21 Nov 2017 15:44:24 +0530 Subject: [PATCH 2/2] docs(README): Add warning for init from develop --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d6e1d8fb3..fcd1d46306 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,14 @@ $ npm install $ npm run dev ``` -If you wish to use the latest version of the webpack template, do the following instead: +This will scaffold the project using the `master` branch. If you wish to use the latest version of the webpack template, do the following instead: ``` bash $ vue init webpack#develop my-project ``` +:warning: **The develop branch is not considered stable and can contain bugs or not build at all, so use at your own risk.** + The development server will run on port 8080 by default. If that port is already in use on your machine, the next free port will be used. ## What's Included