1.0.0 • Published 10 years ago

grunt-borschik v1.0.0

Weekly downloads
4
License
-
Repository
github
Last release
10 years ago

grunt-borschik

Extendable builder for text-based file formats

Getting Started

This plugin requires Grunt ~0.4.1

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-borschik --save-dev

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

grunt.loadNpmTasks('grunt-borschik');

The "borschik" task

Overview

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

Example of use

grunt.initConfig({
    borschik: {
        firefox: {
            src: ['pages-desktop/common/common.css'],
            options: {
                minimize: false
            }
        },
        ie: {
            src: ['pages-desktop/common/common.ie**.css'],
            options: {
                minimize: true,
                tech: './techs/css-fast',
                beforeBuild: function() {
                    console.log('it will be in console before all imports');
                },
                afterBuild: function(err) {
                    // err can be Error or null
                    !err && console.log('it will be in consoled if succeed');
                }
            }
        },
        chrome: {
            src: ['pages-desktop/common/common.ch.css'],
            dest: ['pages-desktop/common/common.min.css'],
            options: {
                minimize: false
            }
        }
    }
})
1.0.0

10 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

11 years ago

0.1.4

11 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago