Skip to content

Commit 0c37888

Browse files
committed
improve readme
1 parent 8cd0391 commit 0c37888

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,33 @@ $ npm install
1414
$ npm run dev
1515
```
1616

17+
### Folder Structure
18+
19+
``` bash
20+
.
21+
├── package.json # build scripts and dependencies
22+
├── .babelrc # babel configuration
23+
├── .eslintrc.js # eslint configuration
24+
├── build
25+
│   ├── dev-server.js # development server script
26+
│   ├── karma.conf.js # unit testing config
27+
│   ├── webpack.base.conf.js # shared base webpack config
28+
│   ├── webpack.dev.conf.js # development webpack config
29+
│   └── webpack.prod.conf.js # production webpack config
30+
├── src
31+
│ ├── index.html # main html file
32+
│   ├── main.js # app entry file
33+
│   ├── App.vue # main app component
34+
│   ├── components # ui components
35+
│   │   └── ...
36+
│   └── assets # static assets
37+
│      └── ...
38+
└── test
39+
└── unit # unit tests
40+
├── index.js # unit test entry file
41+
└── ...
42+
```
43+
1744
### What's Included
1845

1946
- `npm run dev`: first-in-class development experience.

0 commit comments

Comments
 (0)