You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://gitter.im/aurelia/discuss?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
This library is part of the [Aurelia](http://www.aurelia.io/) platform and contains a standard set of behaviors, converters and other resources for use with the Aurelia templating library.
9
8
10
-
> To keep up to date on [Aurelia](http://www.aurelia.io/), please visit and subscribe to [the official blog](http://blog.aurelia.io/) and [our email list](http://eepurl.com/ces50j). We also invite you to [follow us on twitter](https://twitter.com/aureliaeffect). If you have questions look around our [Discourse forums](https://discourse.aurelia.io/), chat in our [community on Gitter](https://gitter.im/aurelia/discuss) or use [stack overflow](http://stackoverflow.com/search?q=aurelia). Documentation can be found [in our developer hub](http://aurelia.io/docs). If you would like to have deeper insight into our development process, please install the [ZenHub](https://zenhub.io) Chrome or Firefox Extension and visit any of our repository's boards.
9
+
> To keep up to date on [Aurelia](http://www.aurelia.io/), please visit and subscribe to [the official blog](http://blog.aurelia.io/) and [our email list](http://eepurl.com/ces50j). We also invite you to [follow us on twitter](https://twitter.com/aureliaeffect). If you have questions look around our [Discourse forums](https://discourse.aurelia.io/), chat in our [community on Gitter](https://gitter.im/aurelia/discuss) or use [stack overflow](http://stackoverflow.com/search?q=aurelia). Documentation can be found [in our developer hub](http://aurelia.io/docs).
10
+
11
11
## Platform Support
12
12
13
13
This library can be used in the **browser** only.
@@ -22,42 +22,31 @@ To build the code, follow these steps.
22
22
```shell
23
23
npm install
24
24
```
25
-
3.Ensure that [Gulp](http://gulpjs.com/) is installed. If you need to install it, use the following command:
25
+
3.To build the code, you can now run:
26
26
27
27
```shell
28
-
npm install -g gulp
28
+
npm run build
29
29
```
30
-
4. To build the code, you can now run:
31
-
32
-
```shell
33
-
gulp build
34
-
```
35
-
5. You will find the compiled code in the `dist` folder, available in three module formats: AMD, CommonJS and ES6.
36
-
37
-
6. See `gulpfile.js` for other tasks related to generating the docs and linting.
30
+
4. You will find the compiled code in the `dist` folder, available in three module formats: AMD, CommonJS and ES6.
38
31
39
32
## Running The Tests
40
33
41
34
To run the unit tests, first ensure that you have followed the steps above in order to install all dependencies and successfully build the library. Once you have done that, proceed with these additional steps:
42
35
43
-
1.Ensure that the [Karma](http://karma-runner.github.io/) CLI is installed. If you need to install it, use the following command:
36
+
1.You can now run the tests with this command:
44
37
45
38
```shell
46
-
npm install -g karma-cli
39
+
npm run test
47
40
```
48
-
2. Ensure that [jspm](http://jspm.io/) is installed. If you need to install it, use the following commnand:
49
41
50
-
```shell
51
-
npm install -g jspm
52
-
```
53
-
3. Install the client-side dependencies with jspm:
42
+
2. With watch options to rerun the test (headless):
54
43
55
44
```shell
56
-
jspm install
45
+
npm run test:watch
57
46
```
58
47
59
-
4. You can now run the tests with this command:
48
+
3. With watch options to rerun the test (with browser):
0 commit comments