Jean-Yves Didier

update documentation for webpack branch

...@@ -17,16 +17,16 @@ The first thing is to clone this repository. ...@@ -17,16 +17,16 @@ The first thing is to clone this repository.
17 17
18 ARCS.js is using three tools in order to be built: 18 ARCS.js is using three tools in order to be built:
19 - `npm`, the [Node.js](https://nodejs.org) package manager, 19 - `npm`, the [Node.js](https://nodejs.org) package manager,
20 - - `grunt`, a [task runner](http://gruntjs.com/) used as a build tool, 20 + - `webpack`, a [module bundler](http://webpack.js.org/) used as a build tool,
21 - - `bower`, a [package manager](https://bower.io/) in order to ship ARCS.js dependencies. 21 + - `eslint`, a [linter](https://eslint.org/) in order to check code consistency.
22 22
23 We suppose that npm is already installed. Then, you will have to setup your 23 We suppose that npm is already installed. Then, you will have to setup your
24 development environment by typing these commands, 24 development environment by typing these commands,
25 the last one being executed in the local sources repository: 25 the last one being executed in the local sources repository:
26 26
27 -`npm install -g bower` 27 +`npm install -g webpack`
28 28
29 -`npm install -g grunt-cli` 29 +`npm install -g eslint`
30 30
31 `npm install` 31 `npm install`
32 32
......