I'm trying to install Gulp on Ubuntu, but it only returns me error:
root@gabriel-Aspire-E1-571:/var/www/aaa/projeto# npm install --save-dev gulp
npm WARN package.json [email protected] No description
npm WARN package.json [email protected] No reposito...
When I use gulp with TFS I have trouble executing gulp commands: TFS when checked the files, it locks the gulp's actions, not letting it read the files checked by TFS. My solution is to give edit to all solution files. Is there any other solutio...
I have a task and would like to know how do I improve image optimization? Here's my script below:
gulp.task(
'build-img',
() =>
gulp.src('assets/img/**/*')
.pipe(imagemin( {
interlaced: true,
prog...
I have the following task in my gulpfile.js that renames files .js to .min.js :
gulp.task('js', function () {
return gulp.src(paths.scripts.src)
.pipe(gulpif(prod, uglify()))
.pipe(rename({ suffix: '.min' }))...
I've installed Gulp to concatenate and mine my files .js , but the following error occurs in the browser when I test the application:
Uncaught ReferenceError: require is not defined
I have gulpfile.js as follows:
var gulp = r...
I started my studies with gulp and I loved livereload, but I only managed with static files like this link . My goal is to start the gulp, however on the embedded php server (localhost -s Localhost: 8000) or on the server with Xampp or Lampp, i...
I have tried to find a solution on the net about this error and the ones I found did not work.
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
npm WARN deprecated [email protected]: P...
Hello, I am a beginner in GULP and I have the following problem, the code below, which simply minifies JS and CSS , works perfectly if you run the functions in default and run GULP . The problem is that with Wa...
I configured the following task to generate a minified file:
gulp.task('frontend-js', function () {
return gulp.src([
'bower_components/jquery/dist/jquery.js',
'bower_components/jquery-ui/jquery-ui.js',
'bower_compo...