Administrator
2022-09-14 58d006e05dcf2a20d0ec5367dd03d66a61db6849
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*jshint node:true*/
module.exports = function(grunt) {
 
"use strict";
 
grunt.initConfig({
    pkg: grunt.file.readJSON('package.json'),
    concat: {
        // used to copy to dist folder
        dist: {
            files: {
                'dist/jquery.validate.js': ['jquery.validate.js'],
                'dist/additional-methods.js': ['additional-methods.js']
            }
        }
    },
    uglify: {
        options: {
            preserveComments: false,
            banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' +
                '<%= grunt.template.today("m/d/yyyy") %>\\n' +
                '<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' +
                '* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' +
                ' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */'
        },
        all: {
            files: {
                'dist/jquery.validate.min.js': ['dist/jquery.validate.js'],
                'dist/additional-methods.min.js': ['dist/additional-methods.js']
            }
        }
    },
    zip: {
        dist: {
            src: [
                'dist/additional-methods.js',
                'dist/additional-methods.min.js',
                'dist/jquery.validate.js',
                'dist/jquery.validate.min.js',
                'README.md',
                'changelog.txt',
                'grunt.js',
                'package.json',
                'demo/**/*.*',
                'lib/**/*.*',
                'localization/**/*.*',
                'test/**/*.*'
            ],
            dest: 'dist/<%= pkg.name %>-<%= pkg.version %>.zip'
        },
        options: {
            zlib: {
                level: 1
            }
        }
    },
    qunit: {
        files: ['test/index.html']
    },
    jshint: {
        options: {
            curly: true,
            eqeqeq: true,
            immed: true,
            latedef: true,
            newcap: true,
            noarg: true,
            sub: true,
            undef: true,
            eqnull: true,
            browser: true,
            globals: {
                jQuery: true,
                $: true,
                console: true
            }
        },
        files: [
            'jquery.validate.js',
            'additional-methods.js',
            'localization/*.js'
        ],
        test: {
            options: {
                globals: {
                    jQuery: true,
                    $: true,
                    QUnit: true,
                    module: true,
                    test: true,
                    start: true,
                    stop: true,
                    expect: true,
                    ok: true,
                    equal: true,
                    deepEqual: true,
                    strictEqual: true
                }
            },
            files: {
                src: [
                    'test/test.js',
                    'test/rules.js',
                    'test/messages.js',
                    'test/methods.js'
                ]
            }
        },
        grunt: {
            files: {
                src: [
                    'Gruntfile.js'
                ]
            }
        }
    }
});
 
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-qunit');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-zipstream');
 
grunt.registerTask('default', ['jshint', 'qunit']);
grunt.registerTask('release', ['default', 'concat', 'uglify', 'zip']);
 
};