Skip to content

Commit 0538695

Browse files
committed
update build instructions for dev build
1 parent 2d6de91 commit 0538695

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

src/guide/installation.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,17 @@ NPM is the recommended installation method when building large scale apps with V
3737
$ npm install vue
3838
# latest stable + CSP-compliant
3939
$ npm install vue@csp
40-
# dev build (directly from GitHub):
41-
$ npm install vuejs/vue#dev
40+
```
41+
42+
## Dev Build
43+
44+
**Important**: the CommonJS bundle distributed on NPM (`vue.common.js`) is **not** checked into source control, therefore to use Vue from the latest source code on GitHub, you will have to build it yourself!
45+
46+
``` bash
47+
git clone https://github.com/vuejs/vue.git node_modules/vue
48+
cd node_modules/vue
49+
npm install
50+
npm run build
4251
```
4352

4453
## Bower

0 commit comments

Comments
 (0)