was.js – Blame information for rev 31

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'],
24 office 21 dest: 'dist/<%= pkg.name %>' // <%= pkg.name %>.js -> was.js
2 office 22 }
23 },
24 uglify: {
25 options: {
26 banner: '<%= banner %>'
27 },
28 dist: {
29 src: '<%= concat.dist.dest %>',
24 office 30 dest: 'dist/was.min.js' // <%= pkg.name %>.min.js -> was.min.js
2 office 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,
24 office 48 'module': false,
49 jQuery: true
17 office 50 },
51 // spread/rest operator
52 esnext: true
2 office 53 },
54 gruntfile: {
55 src: 'Gruntfile.js'
56 },
57 lib_test: {
58 src: ['lib/**/*.js', 'test/**/*.js']
59 }
60 },
61 nodeunit: {
62 files: ['test/**/*_test.js']
63 },
64 watch: {
65 gruntfile: {
66 files: '<%= jshint.gruntfile.src %>',
67 tasks: ['jshint:gruntfile']
68 },
69 lib_test: {
70 files: '<%= jshint.lib_test.src %>',
71 tasks: ['jshint:lib_test', 'nodeunit']
72 }
73 }
74 });
75  
76 // These plugins provide necessary tasks.
77 grunt.loadNpmTasks('grunt-contrib-concat');
31 office 78 grunt.loadNpmTasks('grunt-contrib-uglify-es');
2 office 79 //grunt.loadNpmTasks('grunt-contrib-nodeunit');
80 grunt.loadNpmTasks('grunt-contrib-jshint');
81 grunt.loadNpmTasks('grunt-contrib-watch');
82  
83 // Default task.
84 grunt.registerTask(
85 'default',
86 [
87 'jshint',
88 //'nodeunit',
89 'concat',
90 'uglify'
91 ]
92 );
93  
94 };