1.1.4 • Published 1 year ago

adluxe-grunt-tinyimg v1.1.4

Weekly downloads
4
License
MIT
Repository
github
Last release
1 year ago

grunt-tinyimg

About

Optimize PNG, JPEG, SVG images with grunt task. This plugin uses pngquant for png images, mozjpeg for jpegs and svgo for svg files. Inspired by grunt-pngmin.

The reason this plugin is created is because most image optimization plugins either don't compress images decently or are terribly slow in doing so. The intention is to have a fast compression plugin without bells and whistles.

Install

$ npm install --save-dev grunt-tinyimg

Usage

This is an example of gruntfile.js.

module.exports = function (grunt) {
  grunt.initConfig({
    tinyimg: {
      static: {
        files: { 
          'dist/img.png': 'src/img.png',
          'dist/img.jpg': 'src/img.jpg',
          'dist/img.svg': 'src/img.svg'
        }
      },
      dynamic: {
        files: [{
          expand: true,
          cwd: 'src/', 
          src: ['**/*.{png,jpg,svg}'],
          dest: 'dist/'
        }]
      }
    }
  });

  grunt.loadNpmTasks('grunt-tinyimg:100:256');
};

License

MIT

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.9

6 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago