Skip to content

Commit

Permalink
Stylus support. Fixes #7
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjoelkemp committed Mar 18, 2014
1 parent 624aaca commit 9d7d433
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ for ease of use.

* sass
* less
* stylus
* compass
* YA expects Compass to be installed. Otherwise, it will use pure, non-compass sass compilation.
* YA also respects projects created using `compass create` and will modify the settings to use the `sass/` and `stylesheets/` directories.
Expand Down
10 changes: 10 additions & 0 deletions settings/stylus-settings.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module.exports.lib = 'grunt-contrib-stylus';
module.exports.target = {
dist: {
files: [{
expand: true,
src: ['**/*.stylus', '!node_modules/**/*.stylus'],
ext: '.css'
}]
}
};

0 comments on commit 9d7d433

Please sign in to comment.