Most voted "gulp" questions
Gulp is a task automator whose ultimate goal is similar to Grunt’s. Gulp takes advantage of nodejs streams, and uses code instead of configuration, promoting a construction of tasks in a simpler and more intuitive way.
Learn more…85 questions
Sort by count of
-
0
votes0
answers226
viewsProblem compiling Gulp in Laravel 5.3
Error while running Gulp Laravel 5.3, already reinstalled all packages. What to do? Follow the mistake you give me: Vue packages version mismatch: [email protected] [email protected] This…
-
0
votes1
answer1042
viewsStart php server with livereload with Gulp
I started my studies with Gulp and loved livereload, but I could only with static files like this link. My goal is to start Gulp, but on the built-in php server (localhost -s Localhost:8000) or on…
-
0
votes1
answer1311
viewsnpm WARN deprecated
I tried to find 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…
-
0
votes0
answers80
viewsHow to publish an API written in Typescript on Npmjs?
I created an API in Typescript just a short time ago. And I would like to know how you publish it in Npmjs, I know you have how to publish because Angular 2 low libs in Typescript. I don’t know…
-
0
votes0
answers166
viewsProblem loading CSS file Sass
I am facing a problem where when generating the CSS file, where this is generated by a task done through Gulp. When interpreting Sass and generating CSS, the file on the site only changes if I…
-
0
votes1
answer114
viewsGenerate a minified file for each file inside a folder
I set 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',…
-
0
votes1
answer423
viewsGulp Watch, SASS no amendment
My gulp: var gulp = require('gulp'), sass = require('gulp-ruby-sass'), imagemin = require('gulp-imagemin'), changed = require('gulp-changed'), browserSync = require('browser-sync'), livereload =…
-
0
votes2
answers328
viewsGulp Watch does not update
Hello, I’m a beginner in GULP and I have the following problem, the code below, which simply minifies the JS and the CSS, works perfectly if you rotate the functions in the default and rotate the…
-
0
votes0
answers24
viewsCss does not work with Gulp
You guys, good night I’m starting with Gulp now and I’m at the beginning of a system. The problem is that css doesn’t work. I’ll send a console print. As you can see, the app.jss is ok, but the…
gulpasked 6 years, 11 months ago Júlio Filgueiras 1 -
0
votes0
answers67
viewsHow to choose the default folder when performing the "Styles" and "scripts" functions of Elixir?
Using the Laravel Elixir, I usually use the functions styles and scripts to concatenate the Assets to a single file. However, it seems that by default these two functions try to read files from the…
-
0
votes0
answers23
viewscheckout in svn Node/Gulp project
Hello, would anyone know how to check out a svn project with Node/Gulp? Currently I have this routine that copies my project folder and creates a new one so that I can minify the files and then go…
-
0
votes1
answer19
viewsGulp JS file automation
My question is the following, I have a file . js in my code that contains a lot of variables that only changes their value. Example: var teste = "http://desenvolvimento.com.br"; var teste =…
-
0
votes1
answer53
viewsI installed Bower, Gulp but don’t know which file to edit
I bought a theme from the internet called FUSE ANGULAR JS, in documentation from him, he explains that I must install npm, Bower, Gulp and so on... then he asks me to execute the following command…
-
0
votes1
answer74
viewsRefusing to install Gulp as a dependency of itself
When I run: npm install --save-dev Gulp The mistake happens: npm ERR! Windows_NT 10.0.15063 npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program…
-
0
votes1
answer556
viewsDifference between Gulp and Gulp series
What’s the difference between using one or the other in Gulp v4? Before I did something like gulp.task('default', ['build']); But now of error... AssertionError [ERR_ASSERTION]: Task function must…
-
0
votes0
answers70
viewsGulp does not minify images
I need minify many images, but I’m not getting with the Gulp. Problem: The Code minifica no image and I have checked that all images are in the folder. Folder structure: Gulpfile is at the same…
-
0
votes0
answers140
viewsGulp Problem - Error Events.js:160
Hi. I have a problem running Gulp by Yarn and NPM. Running Yarn run build to set my application to dist folder. The process stops in the middle of this output in the terminal: Gulpfile.js /*global…
-
0
votes1
answer26
viewsNote task does not perform correctly
const sass = require('gulp-sass') const gulp = require('gulp') let caminho = `scss/**/*.scss` gulp.task('scss', () => { return gulp.src(caminho) .pipe(sass()) …
-
0
votes1
answer301
viewsGulp task - Error
I’ve been using Gulp for some time, to minify css files for Less, but now I wanted to use Gulp tb for js files and I’m not getting it, giving the following error. NOTE: Use of Windows module.js:472…
-
0
votes0
answers31
viewsUnknown error in Gulp
I added the file mixins.sass to my project and when I went to look at the terminal, presented the following error: Events.js:160 er; // Unhandled 'error' Event Error: Sass Molecules mixins.Sass…
-
0
votes1
answer563
viewsGulp command does not work
Hello, I created a home.Ass file @import molecules/mixins @import ../bower_components/bootstrap-sass/assets/stylesheets/bootstrap /variables @import…
-
0
votes1
answer307
viewsCss error in Sass
Hello , I created a reset.Sass file for my project when I was updating Gulp, it generated the following error in one of the lines of my file, but I still can’t figure out which error. This is the…
-
0
votes1
answer62
viewsImage minification error with Gulp in Laravel
I am trying to make Gulp minify the images of my project. My project is Laravel 5.3 and I am using lib Laravel-elixir-imagemin Gulp to minify, only when I give the command gulp imagemin appears the…
-
0
votes1
answer74
viewsGulp-rev-all replacing the dom-module id
I am trying to versioning the Assets from my Polymer web app using Gulp-rev-all. However, Gulp-rev-all is replacing and adding hash also in the dom-module id. Ex: <dom-module…
-
0
votes1
answer58
viewsHow to work with flat and minified files?
When writing a file .html, .css or .js we use its flat form, but when playing in production we use preferably minified files, usually named .min css., .min js.... The question that brings me here…
-
0
votes1
answer1584
viewsFontawesome does not carry correctamete carries squares
After performing the settings and installing the font-awesome with the Bower and call you through my file Sass through a name file Sass plugin. The same is not run only appear a few squares. Before…
-
0
votes1
answer124
viewsCopy js from "Dependencies" from node_modules to a folder of my Gulp project
I have some doubts regarding this "new" tool of node/npm. As far as I know/learned, I have great benefits of managing scripts js for npm. But I don’t think it’s very healthy to go through the…
-
0
votes2
answers53
viewsSimultaneous tasks in Gulp
I need some help, I’d like the chores server, Sass and watch run together, ie write scss, then this is copied to css and finally the browser automatically updates the changes. I tried several times…
-
0
votes1
answer56
viewsGulp Babel({ presets: ["env"] }), does not see external directory
I am using Gulp to compile my JS files. I have TWO folders where there are JS files, one INSIDE the project (daughter folder themes/) and another this FORA (parent folder modules/). When using the:…
-
0
votes0
answers39
viewsI’m not getting my final file expanded with Gulp-Sass
hello, I’m unable to leave my final . css file expanded, I’ve tried to put in outputStyle the word Expanded but the file remains compressed there goes the code where is all the Sass code. //Adiciona…
-
0
votes1
answer163
viewsHTML does not pull CSS generated by SASS
I’m using express to upload the server and Gulp to generate Sass, Gulp generates the file correctly, but the css is not adopted by HTML. follows code : Express : const express = require('express')…
-
0
votes1
answer54
viewsDefault function of Gulp
I would like to make the "tasks" below run simultaneously, as I should proceed? var gulp = require('gulp') ,clean = require('gulp-clean') ,imagemin = require('gulp-imagemin') ,cleanCSS =…
-
0
votes0
answers27
viewsHow to generate a hierarchical rule CSS using Gulp
I have a father file called: /assets/hierarchy-file.scss, inside it I import the children files: @import "./style_guide"; @import './default_styles'; @import './header'; // :::::::::: OS ARQUIVOS…
-
0
votes0
answers23
viewsIn Gulpjs, how to generate folders separated by file by "Gulp.dest()"? As if it were a widget?
I’m trying to solve a problem that so far I haven’t found a good solution. In my front-end project with Gulpjs, I am using the package Gulp-file-include to include HTML blocks and generate another…
-
-1
votes1
answer20
viewsThe Gulp build is changing the location of the div
After Gulp build the column changes location…