flexless-mirror
Version:
Less mixins for flexbox layouts.
20 lines (14 loc) • 364 B
text/coffeescript
# Gruntfile for flex.less
module.exports = (grunt) ->
grunt.initConfig
less:
dev:
files:
'static/app.css': 'app.less'
watch:
dev:
files: 'app.less'
tasks: ['less:dev']
grunt.loadNpmTasks 'grunt-contrib-less'
grunt.loadNpmTasks 'grunt-contrib-watch'
grunt.registerTask 'default', ['less', 'watch']