0.2.0 • Published 9 years ago

grunt-stylus-base-files v0.2.0

Weekly downloads
9
License
MIT
Repository
github
Last release
9 years ago

grunt-stylus-base-files

stylus-base-files is a node module for substituting list of base Stylus files to stylus tasks. Used mostly for grunt-contrib-stylus.

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-stylus-base-files --save-dev

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

grunt.loadNpmTasks('grunt-stylus-base-files');

The "stylusbasefiles" task

Overview

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

grunt.initConfig({
  stylusbasefiles: {
    development: {
      options: {
        paths: []
      },
      files: {
        src: '**/*.styl'
      }
    },
  },
  stylus: {
    development: {
      files: [{
        expand: true,
        src: '<%= stylusbasefiles.development.dest %>',
        ext: '.css'
      }]
    },
  },
})

Then you should add task stylusbasefiles into task chain before stylus task. For example:

grunt.registerTask('default', ['stylusbasefiles:development', 'stylus:development']);
0.2.0

9 years ago

0.1.6

9 years ago

0.1.5

9 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago