Skip to content

Commit 69f3043

Browse files
committed
Fix for #901
1 parent db73b4e commit 69f3043

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

CONTRIBUTING.md

+17-16
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,25 @@ Contributing
88
<a name="setup"></a>
99
## How to setup to develop
1010
To get started clone all json-schema-form library repos into sibling folders.
11-
json-schema-form-core
12-
angular-schema-form
13-
angular-schema-form-bootstrap
14-
angular-schema-form-material
15-
11+
```bash
12+
git clone https://github.com/json-schema-form/json-schema-form-core.git
13+
git clone https://github.com/json-schema-form/angular-schema-form.git
14+
git clone https://github.com/json-schema-form/angular-schema-form-bootstrap.git
15+
git clone https://github.com/json-schema-form/angular-schema-form-material.git
16+
```
17+
Install dev/global dependencies and bower references to use demo site
18+
```bash
19+
npm install
20+
npm install -g webpack eslint mocha # json-schema-form-core
21+
npm install -g webpack eslint karma # angular-schema-form
22+
bower install
23+
```
1624
Once cloned each repo has npm commands for assisting development
1725
```bash
18-
# Run unit tests
19-
npm run test
20-
21-
# Run the build
22-
npm run build
23-
24-
# Run the build and minify
25-
npm run dist # not in json-schema-form-core
26-
27-
# Run the build and watch for changes
28-
npm run watch
26+
npm run test # Run unit tests
27+
npm run build # Run the build
28+
npm run dist # not in json-schema-form-core # Run the build and minify
29+
npm run watch # Run the build and watch for changes
2930
```
3031

3132
<a name="build"></a>

0 commit comments

Comments
 (0)