add a maven exec task for TypeScript definition manager

Signed-off-by: Oleksii Orel <oorel@codenvy.com>
6.19.x
Oleksii Orel 2016-10-07 16:11:11 +03:00
parent 5284dc1a0e
commit 722268c786
2 changed files with 6 additions and 1 deletions

View File

@ -10,11 +10,12 @@ Che Dashboard
- npm
- Bower
- gulp
- typings
Installation instructions for Node.js and npm can be found on the following [link](https://docs.npmjs.com/getting-started/installing-node). Bower and gulp are CLI utilities which are installed via npm:
```sh
$ npm install --global bower gulp
$ npm install --global bower gulp typings
```
#Quick start

View File

@ -62,6 +62,10 @@
<exec dir="${basedir}" executable="npm" failonerror="true">
<arg value="install" />
</exec>
<!-- Download Typings dependencies -->
<exec dir="${basedir}" executable="typings" failonerror="true">
<arg value="install" />
</exec>
<!-- Download Bower dependencies -->
<exec dir="${basedir}" executable="bower" failonerror="true">
<arg value="install" />