Skip to content

Commit

Permalink
sass-flex-mixin in stylus edition
Browse files Browse the repository at this point in the history
  • Loading branch information
differui committed Jun 6, 2014
0 parents commit 35371ac
Show file tree
Hide file tree
Showing 5 changed files with 1,173 additions and 0 deletions.
35 changes: 35 additions & 0 deletions Gruntfile.js
@@ -0,0 +1,35 @@
/*global module:false*/
module.exports = function(grunt) {

// Project configuration.
grunt.initConfig({
// Task configuration.
stylus: {
compile: {
options: {
compress: false
},
files: {
'test/test.css': 'test/test.styl'
}
}
},

watch: {
stylus: {
files: [
'*/**/*.styl'
],
tasks: ['stylus:compile']
}
}
});

// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-stylus');
grunt.loadNpmTasks('grunt-contrib-watch');

// Default task.
grunt.registerTask('default', ['stylus:compile', 'watch:stylus']);

};

0 comments on commit 35371ac

Please sign in to comment.