Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bankiru/grunt-stylus-base-files
stylus-base-files is a node module for substituting list of base Stylus files to stylus tasks
https://github.com/bankiru/grunt-stylus-base-files
Last synced: about 1 month ago
JSON representation
stylus-base-files is a node module for substituting list of base Stylus files to stylus tasks
- Host: GitHub
- URL: https://github.com/bankiru/grunt-stylus-base-files
- Owner: bankiru
- Created: 2014-11-11T14:41:31.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-21T17:19:44.000Z (almost 9 years ago)
- Last Synced: 2024-10-31T18:36:40.114Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
```shell
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:
```js
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()`.```js
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:```js
grunt.registerTask('default', ['stylusbasefiles:development', 'stylus:development']);
```