Skip to content

Commit

Permalink
fix(readme): mention that we can specific framework in cli args
Browse files Browse the repository at this point in the history
  • Loading branch information
egoist committed Jan 26, 2016
1 parent 45f6a14 commit c3a0577
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
/build
/example/build
.DS_Store
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@
},
"xo": {
"semicolon": false,
"ignores": ["example/**", "build/**"]
"ignores": [
"example/**",
"build/**"
]
}
}
4 changes: 3 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,16 @@ Build a project in production mode:

```bash
# default entry is ./src/index
# in this case we use Vue in our app
tooling build --entry [entry]
```

Run dev server with hot reloading:

```bash
# default entry is ./src/index
tooling watch --entry [entry]
# in this case we use React in our app
tooling watch --entry [entry] --use react
```

Options:
Expand Down

0 comments on commit c3a0577

Please sign in to comment.