was.js – Blame information for rev 21

Subversion Repositories:
Rev:
Rev Author Line No. Line
2 office 1 /*global module:false*/
2 module.exports = function(grunt) {
3  
4 // Project configuration.
5 grunt.initConfig({
6 // Metadata.
7 pkg: grunt.file.readJSON('package.json'),
8 banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
9 '<%= grunt.template.today("yyyy-mm-dd") %> \n' +
10 '<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
11 '* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author %>;' +
12 ' Licensed <%= pkg.license %> */\n',
13 // Task configuration.
14 concat: {
15 options: {
16 banner: '<%= banner %>',
17 stripBanners: true
18 },
19 dist: {
20 src: ['lib/**/*.js'],
21 dest: 'dist/<%= pkg.name %>.js'
22 }
23 },
24 uglify: {
25 options: {
26 banner: '<%= banner %>'
27 },
28 dist: {
29 src: '<%= concat.dist.dest %>',
30 dest: 'dist/<%= pkg.name %>.min.js'
31 }
32 },
33 jshint: {
34 options: {
35 curly: true,
36 eqeqeq: true,
37 immed: true,
38 latedef: true,
39 newcap: true,
40 noarg: true,
41 sub: true,
42 undef: true,
43 unused: false,
44 boss: true,
45 eqnull: true,
46 globals: {
21 office 47 '$': false,
48 'module': false
17 office 49 },
50 // spread/rest operator
51 esnext: true
2 office 52 },
53 gruntfile: {
54 src: 'Gruntfile.js'
55 },
56 lib_test: {
57 src: ['lib/**/*.js', 'test/**/*.js']
58 }
59 },
60 nodeunit: {
61 files: ['test/**/*_test.js']
62 },
63 watch: {
64 gruntfile: {
65 files: '<%= jshint.gruntfile.src %>',
66 tasks: ['jshint:gruntfile']
67 },
68 lib_test: {
69 files: '<%= jshint.lib_test.src %>',
70 tasks: ['jshint:lib_test', 'nodeunit']
71 }
72 }
73 });
74  
75 // These plugins provide necessary tasks.
76 grunt.loadNpmTasks('grunt-contrib-concat');
77 grunt.loadNpmTasks('grunt-contrib-uglify');
78 //grunt.loadNpmTasks('grunt-contrib-nodeunit');
79 grunt.loadNpmTasks('grunt-contrib-jshint');
80 grunt.loadNpmTasks('grunt-contrib-watch');
81  
82 // Default task.
83 grunt.registerTask(
84 'default',
85 [
86 'jshint',
87 //'nodeunit',
88 'concat',
89 'uglify'
90 ]
91 );
92  
93 };