Gulp 9
Gulp Task For SCSS to CSS Conversion
In my previous post we have introduced to Gulp task. In this Demo, “We will learn about gulp-sass plugin and create a task that reads the SCSS file generate the CSS file and listens to changes to SCSS file and generates the corresponding CSS”. The gulp-sass plugin can be used to create a Gulp task […]
Getting Started With Gulp Build System
Gulp is new build system is capable of automate minification, file copy, watching file changes and rerun tasks. In this demo, “We will learn to getting started with Gulp system”. To install Gulp we need to have NPM installed in the machine.Considering NPM is installed in the machine Let’s continue with the example. We have […]
AngularJS Directive Boilerplate Using Gulp
AngularJS We can build reusable directive using AngularJS. For creating a directive and publishing it to NPM require some repetitive task like source directory,distribution directory,build task etc..To resolve this cumbersome work we have to create a boilerplate and publish it to NPM and then reuse it whenever we have to create a new directive. In […]
Gulp Reactify With React.js Component
Reactify is a Browserify for React JSX. To know more about Browserify check my previous post about introduction to Browserify. Browserify enable the code shared between Client and server side. In this demo,”We will learn to create Gulp task to integrate Browserify-reactify to generate bundle that can be used by client side”. The demo requires […]