Tutorials 4
Gulp Task For JavaScript Minification
In my previous post we have developed a task to convert SCSS files to CSS using gulp-sass plugin. In this Demo, “We will learn to create a Gulp task for minifying javascript file using gulp-uglify plugin”. The gulp-uglify plugin is based on UglifyJS2 library.UglifyJS is a JavaScript parser, minifier, compressor or beautifier toolkit. The gulp-uglify […]
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 […]
Configuring Bootstrap4 Using JSPM
In my previous post we have learnt to install Bootstrap4 using JSPM package manager. In this Demo, “We will learn to configure/import Bootstrap 4 in the application”. To load CSS file we need to install a JSPM plugin named plugin-css(github:systemjs/plugin-css).This plugin is required to our demo as we have to load bootstrap.css file. The plugin-css […]