Skip to content

Commit

Permalink
Merge branch 'release/3.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrechls committed Mar 3, 2019
2 parents fa1e060 + 8af7102 commit b3acbe1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- TypeScript
- Router (VueRouter)
- Store (Vuex)
- i18n (Vue-i18n)
- CSS Pre-processors (Sass/SCSS with dart-sass)
- Linter and formatter (TSLint)
- Unit Testing (Mocha + Chai)
Expand Down
25 changes: 16 additions & 9 deletions docs/guide/how-to-use.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,42 @@
## Development

```bash
$ yarn run serve # compiles and hot-reloads for development
$ yarn run serve # compiles and hot-reloads for development
```

## Production

```bash
$ yarn run build # compiles and minifies for production
$ yarn run build # compiles and minifies for production
```

To render your build project in local, run :

```bash
$ yarn global add serve # (if you don't already have serve global dependency)
$ serve -s dist
```

## Testing

Run your tests

```bash
$ yarn run test # run your tests
$ yarn run test:e2e # run your end-to-end tests
$ yarn run test:unit # run your unit tests
$ yarn run test # run your tests
$ yarn run test:e2e # run your end-to-end tests
$ yarn run test:unit # run your unit tests
```

## Lint

```bash
$ yarn run lint # lints and fixes files
$ yarn run lint # lints and fixes files
```

## Documentation

```bash
$ yarn run docs:dev # run server for editing your vuepress documentation
$ yarn run docs:build # build your vuepress documentation
$ yarn run docs:deploy # deploys vuepress documentation
$ yarn run docs:dev # run server for editing your vuepress documentation
$ yarn run docs:build # build your vuepress documentation
$ yarn run docs:deploy # deploys vuepress documentation
```

0 comments on commit b3acbe1

Please sign in to comment.