gulp Questions

8

Solved

I have a node application that I want to host in a Docker container, which should be straight forward, as seen in this article: https://nodejs.org/en/docs/guides/nodejs-docker-webapp/ In my proje...
Thi asked 24/5, 2016 at 7:6

7

Solved

I have something like this: gulp.task('default', ['css', 'browser-sync'] , function() { gulp.watch(['sass/**/*.scss', 'layouts/*.css'], function() { gulp.run('css'); }); }); but it does not...
Boot asked 25/12, 2014 at 7:23

12

Solved

I installed gulp(globally) and it looks like it worked because it ran this code: ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [em...
Anjanette asked 2/8, 2014 at 0:25

13

Solved

I scaffold an app using jhipster which is microservice gateway using cassandra db and using maven to build which was building fine after scaffold.i ran gulp command to for the live reload of ui. i...
Carisacarissa asked 22/7, 2017 at 6:52

5

Solved

Is there a way to specify a gulp task depending on the NODE_ENV that is set? For example in my package.json file, I have something like: "scripts": { "start": "gulp" } And I have multiple gul...
Cathey asked 24/3, 2015 at 1:28

3

Error: Node Sass does not yet support your current environment: Linux 64-bit with Unsupported runtime (72) I faced this issue when I used the latest version of node.js i.e, 12.6.0 and npm version ...
Qualified asked 30/7, 2019 at 7:11

4

Solved

I have a few tasks in my Gulpfile that I would like to run and either have their output replace or alter an existing file. For example, I want to run wiredep and have code replace the blocks inside...
Tercentenary asked 11/11, 2016 at 20:3

41

I've installed Gulp both globally and locally using npm install gulp npm install gulp -g npm install gulp-util npm install gulp-util -g When try to run gulp I get 'gulp' is not recognized as an in...
Protomorphic asked 4/6, 2014 at 1:23

3

Solved

I trying to set up Gulp to compile a SCSS file and also rename the SCSS file in the process - so for example: I want SCSS/original.scss to be saved as CSS/new.css This is on a Windows 10 VM I ha...
Venery asked 7/2, 2017 at 12:16

1

I do not connect the built-in modules, or I do not use them correctly. Please help me. I use the gulp, and I can't understand why I have the error: Error: Invalid CSS after "... $height: math&...
Supergalaxy asked 5/6, 2021 at 12:37

1

I have installed node.js in windows 64bit and i run into this when runnig gulp on local project. another note: npm install went good with packages.json Error: Cannot find module 'lodash.assign' ...
Dactylology asked 2/2, 2016 at 18:13

8

Solved

Hi Previously I used the grunt in that I want to know the available tasks use grunt --help. But same as in gulp use gulp --help it doesn't show. What is the command to know the available tasks list...
Rimester asked 11/6, 2015 at 9:38

3

In my react project everything works fine on my vmware. But when I cloned the same app and ran gulp command I am getting this error during compilation saying MacBook-Pro:Frontend1.0 apurvgandhwa...
Clausius asked 1/2, 2018 at 17:54

2

Solved

Hey guys this question isn't gone through with this similar, Build: Cannot use JSX unless the '--jsx' flag is provided Cannot use JSX unless the '--jsx' flag is provided tried the...
Spadix asked 14/10, 2020 at 15:14

5

Solved

I would like to run a shell command from gulp, using gulp-shell. I see the following idiom being used the gulpfile. Is this the idiomatic way to run a command from a gulp task? var cmd = 'ls'; gu...
Pawl asked 8/4, 2015 at 9:58

3

I am using Netbeans and I am developing my first web application using spring boot. I was keeping my HTML, js, CSS in "webapp" folder and then I refactored my project and I put all static content i...
Overrule asked 29/4, 2017 at 8:17

4

I have one file, app.ts under my scripts folder, that gets copied to wwwroot/scripts by a gulp task. After the gulp task runs, I now also have a wwwroot/scripts/app.ts file, in which the sole funct...
Gangland asked 7/11, 2019 at 11:28

9

Solved

Question: How can I write my gulp file in ES6 so I can use import instead of require and use => syntax over function()? I can use io.js or node any version. gulpfile.js: import gulp from "...
Psychosomatic asked 16/7, 2015 at 2:20

4

Solved

Is it possible to have one main gulpfile.js from which to call tasks from other gulp files.js? Simple "require" of child gulpfile.js into main one doesn't work. I have a platform project which incl...
Peerless asked 27/8, 2014 at 4:21

2

I am trying to use the plugin SyntaxHighlighter v4, but I cannot get the build process to work! Following the instructions here, I get the following error: $ ./node_modules/gulp/bin/gulp.js setup...
Colpin asked 22/11, 2017 at 15:45

5

Solved

Can someone tell me why my proxy URL isn't working with BrowserSync and Gulp? Instead, it just keeps using http://localhost:3000 as the dev URL. gulp.task('watch', ['bs'], function() { gulp.watch...
Farmland asked 17/2, 2015 at 17:27

3

Solved

I'm using Gulp and Bower to get JQuery into my project. However the jquery.min.cs file has a SourceMappingURL at the end of the precompiled file and I would like to remove this. Currently my Gulp ...
Parasitic asked 14/9, 2015 at 14:15

4

Solved

I'm pretty new to Node, npm and webpack. I'm trying to set up a Craft 3 environment with Tailwind css. Everything worked fine out of the box, but when i run npm run dev i get the following error: &...
Summation asked 28/8, 2020 at 14:30

15

Solved

in the snippet like this: gulp.task "coffee", -> gulp.src("src/server/**/*.coffee") .pipe(coffee {bare: true}).on("error",gutil.log) .pipe(gulp.dest "bin") gulp.task "clean",-> gulp.sr...
Malita asked 2/4, 2014 at 22:45

1

Solved

I've been using Gulp for quite a while and either I didn't notice it took this much space from the beginning or the sizes have been growing. I only use it for very normal front-end work. For exampl...
Paderewski asked 6/2, 2017 at 1:9

© 2022 - 2024 — McMap. All rights reserved.