Top "Gulp" questions

Gulp is a JavaScript build system, Node.

Can I use a Gulp task with multiple sources and multiple destinations?

I have the following in my gulpfile.js: var sass_paths = [ './httpdocs-site1/media/sass/**/*.scss', './httpdocs-site2/media/sass/**/*.…

javascript node.js gulp
No local gulp install found even after installing npm install -g gulp

I tried to install gulp by npm install -g gulp The output seems to be something like this. (i have …

linux ubuntu gulp
UglifyJS throws unexpected token: keyword (const) with node_modules

A small project I started make use a node module (installed via npm) that declares const variables. Running and testing …

javascript npm gulp babeljs uglifyjs2
How to run a gulp task from another task?

I am aware of the ability to declare dependencies that will run before the task, e.g. gulp.task('a', () =&…

gulp
Gulp error: watch task has to be a function

Here is my gulpfile: // Modules & Plugins var gulp = require('gulp'); var concat = require('gulp-concat'); var myth = require('gulp-myth'); var …

javascript gulp
GulpUglifyError:Unable to minify JavaScript

I am trying to minify my script files for which i am using gulp task runner And I am trying …

javascript gulp gulp-uglify
gulp command does not work

I am using ubuntu 14.04 LTS, I have nodejs (not node) and npm installed. I had installed gulp using npm install …

ubuntu gulp
Why does gulp.src not like being passed an array of complete paths to files?

I'm attempting to pass gulp.src an array of files that I want it to deal with. This is the …

arrays node.js glob gulp
Glob matching, exclude all JS files

I'm a new user to gulp.js. I'd like to move all of my non-javascript files to a build directory. …

node.js pattern-matching glob gulp
Gulp - copy and rename a file

I'm extremely new to Gulp. I'm basically trying to watch for a modified JavaScript file, and then make a new …

javascript gulp gulp-watch