UNPKG

grunt-livingstyleguide

Version:

Easily create living style guides/front-end style guides/pattern libraries by adding Markdown documentation to your Sass project.

64 lines (52 loc) 1.45 kB
/* * grunt-livingstyleguide * https://github.com/NexwayGroup/grunt-livingstyleguide * * Copyright (c) 2015 Nexway Lab. * Licensed under the MIT license. * * @author Damian Duda <dduda@nexway.com> */ 'use strict'; module.exports = function (grunt) { // load all npm grunt tasks require('load-grunt-tasks')(grunt); // Project configuration. grunt.initConfig({ jshint: { all: [ 'Gruntfile.js', 'tasks/*.js', '<%= nodeunit.tests %>' ], options: { jshintrc: '.jshintrc', reporter: require('jshint-stylish') } }, // Before generating any new files, remove any previously-created files. clean: { tests: ['tmp'] }, // Configuration to be run (and then tested). livingstyleguide: { generate: { options: { src: 'test/fixtures/styleguide.lsg', dest: 'tmp/test.html' } } }, // Unit tests. nodeunit: { tests: ['test/*_test.js'] } }); // Actually load this plugin's task(s). grunt.loadTasks('tasks'); // Whenever the "test" task is run, first clean the "tmp" dir, then run this // plugin's task(s), then test the result. grunt.registerTask('test', ['clean', 'livingstyleguide', 'nodeunit']); // By default, lint and run all tests. grunt.registerTask('default', ['jshint', 'test']); };