Skip to content

Commit 3d4dfd8

Browse files
author
Evan You
committed
readme [ci skip]
1 parent a2cc408 commit 3d4dfd8

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ Modular & Lightweight JavaScript MVVM
1010
- DOM based templates with two-way data binding.
1111
- Precise and efficient DOM manipulation with granularity down to a TextNode.
1212
- POJSO (Plain Old JavaScript Objects) Models that can be shared across ViewModels with arbitrary levels of nesting.
13+
- Extendable with custom directives and filters.
1314
- Auto dependency extraction for computed properties.
1415
- Auto event delegation on repeated items.
1516
- Flexible API that allows easy encapsulation of components.
16-
- Supports partials, transitions and nested ViewModels.
17+
- Supports partials, transitions and nested view models.
1718
- Plays well with module systems. Primarily [Component](https://github.com/component/component) based, but can also be used with [Browserify](https://github.com/substack/node-browserify), as a CommonJS/AMD module or as a standalone library.
1819

1920
## Browser Support
@@ -46,9 +47,14 @@ Simply include a built version in `/dist` or installed via Bower with a script t
4647

4748
## Development
4849

49-
Make sure you have `grunt-cli` installed globally. Then clone the repo and install dependencies:
50-
50+
# in case you don't already have them:
51+
# npm install -g grunt-cli component
5152
$ npm install
53+
$ component install
54+
55+
To build:
56+
57+
$ grunt componentbuild
5258

5359
To watch and auto-build dev version during development:
5460

@@ -58,10 +64,6 @@ To test (install [CasperJS](http://casperjs.org/) first):
5864

5965
$ grunt test
6066

61-
To build:
62-
63-
$ grunt
64-
6567
## Quickstart
6668

6769
**HTML**

0 commit comments

Comments
 (0)