UNPKG

665 BMarkdownView Raw
1# vue-cli contributing guide
2
3## Issue Reporting Guidelines
4
5- First identify where error is coming from. If it's occuring while running `vue` command then issue is indeed on
6`vue-cli` so please report it here. If error appears when you run one of `npm run` scripts, problem originates
7from a template you're using, [maybe one of the official ones](https://github.com/vuejs-templates). If so, please
8open an issue on a template repository.
9
10- Try to search for your issue, it may have already been answered or even fixed in the development branch.
11
12## Development Setup
13
14``` bash
15npm install
16bin/vue init <path-to-github-repo OR path-to-local-dir>
17bin/vue list
18```