Browse Source

Updated build docs

Tobias Reich 8 years ago
parent
commit
0ad4239b2e
1 changed files with 4 additions and 5 deletions
  1. 4 5
      docs/Build.md

+ 4 - 5
docs/Build.md

@@ -4,18 +4,17 @@ First you have to install the following dependencies:
 
 - `node` [Node.js](http://nodejs.org) v0.10 or later
 - `npm` [Node Packaged Modules](https://www.npmjs.org)
-- `bower` [Bower](http://bower.io)
 - `gulp` [Gulp.js](http://gulpjs.com)
 
 After [installing Node.js](http://nodejs.org) you can use the included `npm` package manager to install the global requirements and Lychee-dependencies with the following command:
 
 	cd src/
-	npm install -g bower gulp
-	npm install && bower install
+	npm install -g gulp
+	npm install
 
 ### Build
 
-The Gruntfile is located in `src/` and can be easily executed using the `gulp` command.
+The Gulpfile is located in `src/` and can be easily executed using the `gulp` command.
 
 ### Watch for changes
 
@@ -23,4 +22,4 @@ While developing, you might want to use the following command to watch for chang
 
 	gulp watch
 
-`gulp` will automatically build Lychee everytime you save a file.
+`gulp watch` will automatically build Lychee everytime you save a file.