Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

gulp imagemin

$ npm install --save-dev gulp-imagemin
Comment

gulp-imagemin

const gulp = require('gulp');
const imagemin = require('gulp-imagemin'); 
exports.default = () => (    
	gulp.src('src/images/*')        
    .pipe(imagemin())        
    .pipe(gulp.dest('dist/images')));
Comment

gulp-imagemin

$ npm install --save-dev gulp-imagemin
Comment

PREVIOUS NEXT
Code Example
Shell :: how to compare files in terminal 
Shell :: publish ionic app 
Shell :: how to disable a user linux 
Shell :: pulseaudio listen to microphone 
Shell :: Linux get bluetooth mac address 
Shell :: nginx dockerfile 
Shell :: wget to particular directory 
Shell :: how to git clone into a directory 
Shell :: linux date format utc 
Shell :: ps linux 
Shell :: git gui 
Shell :: cargo new lib 
Shell :: linux set environment variable 
Shell :: start tomcat 9 as a service windows 
Shell :: how to check whether a string contains a special character or not in bash 
Shell :: print variable in bash 
Shell :: delete from git history 
Shell :: bash if file content equals 
Shell :: git diff between two repos 
Shell :: powershell type of object 
Shell :: termux update 
Shell :: npm install --save-dev shortcut 
Shell :: uninstall django ubuntu 
Shell :: how to restore deleted branch in git 
Shell :: how to change mac address kali linux 
Shell :: change branch git 
Shell :: powershell copy file to remote server 
Shell :: PowerShell script block 
Shell :: git basic commands 
Shell :: brew show package info 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =