grunt-to-double-quotes
Version:
Replaces single ( escaped or otherwise ) quotes with double quotes.
61 lines (49 loc) • 1.34 kB
JavaScript
/*
* grunt-to-double-quotes
*
*
* Copyright (c) 2014 Jarrett Drouillard
* 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).
to_double_quotes: {
default_options: {
files: {
'tmp/default_options': ['test/fixtures/double', 'test/fixtures/escaped', 'test/fixtures/single', 'test/fixtures/mix']
}
}
},
// 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', 'to_double_quotes', 'nodeunit']);
// By default, lint and run all tests.
grunt.registerTask('default', ['jshint', 'test']);
};