Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/voles/gulp-experiment

Experiment comparing Gulp with Grunt
https://github.com/voles/gulp-experiment

Last synced: about 1 month ago
JSON representation

Experiment comparing Gulp with Grunt

Awesome Lists containing this project

README

        

Gulp experiment
===============

Experiment comparing Gulp with Grunt

## Installation
Run the commands below in the project root directory.
#####1. Install Gulp globally

$ sudo npm install -g gulp

#####2. Install project dependencies

$ npm install

## Useful commands

####Compile LESS files
The build version is located in the `dist` directory.

$ gulp css

####Compile JS files

$ gulp js

####Watch for file changes
When a *.less file is changed, the `css` task will get executed.

$ gulp watch