Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/voles/gulp-experiment
- Owner: Voles
- Created: 2014-02-03T18:34:16.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-03T20:53:45.000Z (almost 11 years ago)
- Last Synced: 2023-03-26T00:34:40.884Z (almost 2 years ago)
- Language: JavaScript
- Size: 137 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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