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
{{ message }}
This repository was archived by the owner on Dec 11, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -22,11 +22,19 @@ If you maintain a JavaScript library that has UI components, we'd love for you t
22
22
### Building
23
23
24
24
Once you've cloned Chassis to your machine, run these commands:
25
-
```
25
+
```bash
26
26
$ npm install
27
27
$ grunt build
28
28
```
29
29
30
+
### Develop
31
+
32
+
To automate the build process during development, run the `grunt watch` task to compile SCSS upon file change.
33
+
34
+
```bash
35
+
$ grunt watch
36
+
```
37
+
30
38
### Performance testing
31
39
32
40
#### Setup
@@ -38,7 +46,7 @@ $ grunt build
38
46
#### Running the tests
39
47
40
48
Once you have completed the setup run this:
41
-
```
49
+
```bash
42
50
$ grunt perf
43
51
```
44
52
@@ -49,8 +57,7 @@ Once the tests completed, [view the results](http://localhost:5984/css-performan
49
57
#### Viewing the test pages
50
58
51
59
Follow the steps above to build. Once that is complete run this:
52
-
```
60
+
```bash
53
61
$ grunt connect:dev
54
62
```
55
63
This will start a connect server that will run until you stop it (`Ctrl+C`). Then go to http://localhost:4200/framework/{framework name}/component/{component name}/count/{ # of components to render}/ and you can see the generated test page.
0 commit comments