Top "Gulp" questions

Gulp is a JavaScript build system, Node.

gulp minify all css files to a single file

I have gulp task script as following, // loads various gulp modules var gulp = require('gulp'); var concat = require('gulp-concat'); var …

node.js gulp bundling-and-minification
Prevent errors from breaking / crashing gulp watch

I'm running gulp 3.6.2 and have the following task that was set up from a sample online gulp.task('watch', ['default'], …

node.js gulp
How to clean a project correctly with gulp?

On the gulp page there is the following example: gulp.task('clean', function(cb) { // You can use multiple globbing patterns …

javascript gulp
Running a shell command from gulp

I would like to run a shell command from gulp, using gulp-shell. I see the following idiom being used the …

javascript gulp
Uglify SyntaxError: Unexpected token: punc ())

I am trying to use gulp in order to minify a folder containing JS files. However, one of the files …

javascript gulp gulp-uglify
Gulp minify multiple js files to one

I am new to Gulp and wondering how can I minify (concatinate) my collection to single file instead of every …

javascript gulp
events.js:160 throw er; // Unhandled 'error' event

The project I worked on was built with gulp. Recently I updated the node version to v6.3.1. Then something came …

javascript node.js gulp node-modules gulp-load-plugins
How to prevent moment.js from loading locales with webpack?

Is there any way you can stop moment.js from loading all the locales (I just need English) when you're …

javascript gulp momentjs webpack
How do you create a file from a string in Gulp?

In my gulpfile I have a version number in a string. I'd like to write the version number to a …

node.js gulp
npm install multiple package names

What does it do when I run this command: npm install --save-dev package1 package2 It is definitely not installing multiple …

command-line npm gulp browser-sync