Skip to content Skip to sidebar Skip to footer
Showing posts with the label Gulp

How To Debug Gulpfile.js

What is the proper way to execute node-inspector in order to be able to debug gulpfile.js? I've… Read more How To Debug Gulpfile.js

Using Gulp-babel And Getting "argument Name Clash In Strict Mode"

I'm trying to use gulp-babel so I can start writing some ES6 / ES2015 code inside of my ES5 app… Read more Using Gulp-babel And Getting "argument Name Clash In Strict Mode"

Gulp Watch Not Watching File Changes

My gulp-watch task has been started normally, and the gulp command didn't exit too, every seems… Read more Gulp Watch Not Watching File Changes

How To Run Livereload With Gulp Within A Docker Container?

I created a docker container to run tasks with gulp. All tasks are running, the problem is I can… Read more How To Run Livereload With Gulp Within A Docker Container?

Gulp And Bower - Creating Proper Files Structure

I'm adding Bower to project which is using Gulp already. My folder structure is like: |- bower… Read more Gulp And Bower - Creating Proper Files Structure

How To Compose Sequence Of Pipes For Gulp?

I have a common pattern in my gulpfile.js: var rev = require('gulp-rev'); var buffe… Read more How To Compose Sequence Of Pipes For Gulp?

Gulp Throwing "is Read-only While Parsing File" Error While Running Gulp Task

I'm trying to create ES6 module in JavaScript and I get error like: Line 20: 'NotFound'… Read more Gulp Throwing "is Read-only While Parsing File" Error While Running Gulp Task

How To Import Js Library From Node_modules

Can you please explain the ideology of using import/require libraries from node_modules folder. I j… Read more How To Import Js Library From Node_modules