grunt-minset

0.1.3 • Public • Published

grunt-minset

Set minify configure as uglify automatically

Getting Started

This plugin requires Grunt ~0.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-minset --save-dev

One the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-minset');

The "minset" task

Overview

In your project's Gruntfile, add a section named minset to the data object passed into grunt.initConfig().

grunt.initConfig({
  minset: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
 
  // Required to define empty object of uglify
  // minset task fill set into this object
  uglify: {}
})

Options

options.config

Type: String Default value: uglify

A string value that is used to setting config.

options.from

Type: RegExp Default value: /\.unpack\.js$/

Matched files in src pick up automatically.

options.to

Type: String Default value: .js

Matched files by options.from replace to options.to into dest directory.

Usage Examples

Default Options

grunt.initConfig({
  minset: {
    options: {},
    files: {
      'tmp': ['test/fixtures/*.unpack.js'],
    },
  },
 
  uglify: {}
})

Custom Options

grunt.initConfig({
  minset: {
    options: {
      from: /\.js$/,
      to: '.min.js',
      config: 'min'
    },
    files: {
      'tmp': ['path/to/js/directoy/*.js'],
    },
  },
 
  min: {}
})

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

(Nothing yet)

Readme

Keywords

none

Package Sidebar

Install

npm i grunt-minset

Weekly Downloads

4

Version

0.1.3

License

none

Last publish

Collaborators

  • sideroad