grunt-svg-inject
Version:
> Compile a folder of SVG files into variables in a JavaScript file, ready for injection into HTML.
70 lines (58 loc) • 1.49 kB
JavaScript
/*
* grunt-svg-inject
* https://github.com/getanwar/grunt-svg-inject
*
* Copyright (c) 2014 Joe Howard
* Licensed under the MIT license.
*/
;
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).
svginject: {
default_options: {
options: {
},
files: {
'tmp/default_options.js': ['test/fixtures/pencilscoop.svg']
}
},
custom_options: {
options: {
},
files: {
'tmp/custom_options.js': ['test/fixtures/pencilscoop.svg']
}
}
},
// 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', 'svginject', 'nodeunit']);
// By default, lint and run all tests.
grunt.registerTask('default', ['jshint', 'test']);
};