Top "Gulp" questions

Gulp is a JavaScript build system, Node.

cannot find module "lodash"

Today I tried to learn more about Google Web Starter Kit so I followed these instructions and after a lot …

node.js gulp gulp-sass
Is it possible to pass a flag to Gulp to have it run tasks in different ways?

Normally in Gulp tasks look like this: gulp.task('my-task', function() { return gulp.src(options.SCSS_SOURCE) .pipe(sass({style:…

javascript node.js gulp
Excluding files/directories from Gulp task

I have a gulp rjs task that concatenates and uglifies all my custom .JS files (any non vendor libraries). What …

requirejs gulp minify uglifyjs
How to watch and reload ts-node when TypeScript files change

I'm trying to run a dev server with TypeScript and an Angular application without transpiling ts files every time. I …

typescript angular gulp development-environment nodemon
Why do we need to install gulp globally and locally?

2 manuals about gulp say that I need to install gulp first globally (with -g flag) and then one more time …

javascript gulp
Pass Parameter to Gulp Task

Normally we can run gulp task from console via something like gulp mytask. Is there anyway that I can pass …

gulp
Using Gulp to Concatenate and Uglify files

I'm trying to use Gulp to: Take 3 specific javascript files, concatenate them, then save the result to a file (concat.…

gulp
Gulp error: The following tasks did not complete: Did you forget to signal async completion?

I have the following gulpfile.js, which I'm executing via the command line gulp message: var gulp = require('gulp'); gulp.…

gulp
How do I copy directories recursively with gulp?

I am trying to stage a project from a working directory to a server (same machine). Using the following code: …

deployment gulp
Error: Cannot find module 'gulp-sass'

When I compile with gulp, I got an error like below. How can I fix it? module.js:339 throw err; ^ …

sass npm gulp