Created
March 18, 2013 17:21
-
-
Save cowboy/5188999 to your computer and use it in GitHub Desktop.
Sample Gruntfile for gruntjs/grunt#721
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
module.exports = function(grunt) { | |
// Override process.stdout to log the name+args of the current task before | |
// every logged line. | |
var hooker = require('hooker'); | |
var newline = true; | |
hooker.hook(process.stdout, 'write', function(str) { | |
var prefix = grunt.task.current.nameArgs; | |
if (newline && prefix && str !== '\n') { | |
newline = false; | |
str = '[' + prefix + '] ' + str; | |
} | |
newline = /\n/.test(str); | |
return hooker.filter(this, [str]); | |
}); | |
// Project configuration. | |
grunt.initConfig({ | |
// Metadata. | |
pkg: grunt.file.readJSON('sample-plugin.jquery.json'), | |
banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' + | |
'<%= grunt.template.today("yyyy-mm-dd") %>\n' + | |
'<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' + | |
'* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' + | |
' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */\n', | |
// Task configuration. | |
clean: { | |
files: ['dist'] | |
}, | |
concat: { | |
options: { | |
banner: '<%= banner %>', | |
stripBanners: true | |
}, | |
dist: { | |
src: ['src/<%= pkg.name %>.js'], | |
dest: 'dist/<%= pkg.name %>.js' | |
}, | |
}, | |
uglify: { | |
options: { | |
banner: '<%= banner %>' | |
}, | |
dist: { | |
src: '<%= concat.dist.dest %>', | |
dest: 'dist/<%= pkg.name %>.min.js' | |
}, | |
}, | |
qunit: { | |
files: ['test/**/*.html'] | |
}, | |
jshint: { | |
gruntfile: { | |
options: { | |
jshintrc: '.jshintrc' | |
}, | |
src: 'Gruntfile.js' | |
}, | |
src: { | |
options: { | |
jshintrc: 'src/.jshintrc' | |
}, | |
src: ['src/**/*.js'] | |
}, | |
test: { | |
options: { | |
jshintrc: 'test/.jshintrc' | |
}, | |
src: ['test/**/*.js'] | |
}, | |
}, | |
watch: { | |
gruntfile: { | |
files: '<%= jshint.gruntfile.src %>', | |
tasks: ['jshint:gruntfile'] | |
}, | |
src: { | |
files: '<%= jshint.src.src %>', | |
tasks: ['jshint:src', 'qunit'] | |
}, | |
test: { | |
files: '<%= jshint.test.src %>', | |
tasks: ['jshint:test', 'qunit'] | |
}, | |
}, | |
}); | |
// These plugins provide necessary tasks. | |
grunt.loadNpmTasks('grunt-contrib-clean'); | |
grunt.loadNpmTasks('grunt-contrib-concat'); | |
grunt.loadNpmTasks('grunt-contrib-uglify'); | |
grunt.loadNpmTasks('grunt-contrib-qunit'); | |
grunt.loadNpmTasks('grunt-contrib-jshint'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
// Default task. | |
grunt.registerTask('default', ['jshint', 'qunit', 'clean', 'concat', 'uglify']); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue comment here: gruntjs/grunt#721 (comment)