1.0.1 • Published 8 years ago

ionic-gulp-image-task v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

Image Copy and Optimization Task

Copy image resources to build directory and optimizes them. This project is created in the style of the other ionic-gulp-* tasks used in the gulpfile.js of starter projects created with the ionic2 generator, e.g. (https://github.com/driftyco/ionic-gulp-tasks). It should be considered temporary until Ionic releases something official. It is published as npm module so that it can be easily included (and reapplied during beta changes) of the ionic2 build-tools.

Installation

$ npm install --save-dev ionic-gulp-image-task

API

imageCopyOptimize(options)

Returns a stream of Vinyl files that can be piped.

Available options:

  • src (String|Array) Glob or array of globs (What's a glob?) matching image source files. Default: 'resources/www/img/**/*'.
  • dest (String) Output path for the HTML files. Default: 'www/img'.

Example

var imageCopyOptimize = require('ionic-gulp-image-task');

gulp.task('image', imageCopyOptimize);

gulp.task('image', function(){
  return imageCopyOptimize({ dest: 'www/my-custom-build-dir'});
});