Skip to content

Commit 45d12ab

Browse files
committed
fix(doc): adjust development doc
1 parent 2dbc9fb commit 45d12ab

File tree

1 file changed

+4
-27
lines changed

1 file changed

+4
-27
lines changed

README.md

Lines changed: 4 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -152,42 +152,19 @@ To build the code, follow these steps.
152152
```shell
153153
npm install
154154
```
155-
3. Ensure that [Gulp](http://gulpjs.com/) is installed. If you need to install it, use the following command:
156-
157-
```shell
158-
npm install -g gulp
159-
```
160-
4. To build the code, you can now run:
155+
3. To build the code, you can now run:
161156

162157
```shell
163158
gulp build
164159
```
165-
5. You will find the compiled code in the `dist` folder, available in three module formats: AMD, CommonJS and ES6.
166-
167-
6. See `gulpfile.js` for other tasks related to generating the docs and linting.
160+
4. You will find the compiled code in the `dist` folder, available in module formats: es2015, es2017, AMD, CommonJS and UMD.
168161

169162
## Running The Tests
170163

171164
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:
172165

173-
1. Ensure that the [Karma](http://karma-runner.github.io/) CLI is installed. If you need to install it, use the following command:
174-
175-
```shell
176-
npm install -g karma-cli
177-
```
178-
2. Ensure that [jspm](http://jspm.io/) is installed. If you need to install it, use the following commnand:
179-
180-
```shell
181-
npm install -g jspm
182-
```
183-
3. Install the client-side dependencies with jspm:
184-
185-
```shell
186-
jspm install
187-
```
188-
189-
4. You can now run the tests with this command:
166+
1. Run the tests with this command:
190167

191168
```shell
192-
karma start
169+
npm run test
193170
```

0 commit comments

Comments
 (0)