From 70fb6f08630b3c50ac1002c79189f5953da52e16 Mon Sep 17 00:00:00 2001 From: Tobias Reich Date: Fri, 18 Jul 2014 22:15:37 +0200 Subject: [PATCH] From Grunt to Gulp --- docs/Build.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/Build.md b/docs/Build.md index ba914e5..ce95985 100644 --- a/docs/Build.md +++ b/docs/Build.md @@ -5,22 +5,22 @@ 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) -- `grunt` [Grunt](http://gruntjs.com) +- `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: - npm install -g bower grunt-cli; + cd build/; + npm install -g bower gulp; npm install && bower install; - - + ### Build -The Gruntfile is located in `build/` and can be easily executed using the `grunt` command. +The Gruntfile is located in `build/` and can be easily executed using the `gulp` command. ### Watch for changes While developing, you might want to use the following command to watch for changes in `assets/js/` and `assets/css/`: - grunt watch + gulp watch -`grunt` will automatically build Lychee, everytime you save a file. +`gulp` will automatically build Lychee everytime you save a file. \ No newline at end of file