0.0.3 • Published 10 years ago

grunt-css-injector v0.0.3

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

grunt-css-injector

This plugin parse css/scss/sass files, finds all @import directive and inject this files.

Getting Started

This plugin requires Grunt.

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-css-injector --save-dev

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

grunt.loadNpmTasks('grunt-css-injector');

The "css_injector" task

Overview

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

grunt.initConfig({
  css_injector: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
})

Options

options.importPath

Type: String Default value:

A string value that is used to locate the file specified in the @import directive.

Usage Examples

Example config

grunt.initConfig({
  css_injector: {
    options: {
      importPath: './'
      stopOnMissing: false
    },
    files: {
      'main.css': ['src/css/module1', 'src/css/module2'],
    },
  },
})

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

  • 2014-10-28   v0.0.1   Initial release

License

Copyright (c) 2014 KyKyPy3. Licensed under the MIT license.

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago