File tree Expand file tree Collapse file tree 3 files changed +10
-20
lines changed Expand file tree Collapse file tree 3 files changed +10
-20
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,16 @@ module.exports = function(grunt) {
6
6
grunt . initConfig ( {
7
7
pkg : grunt . file . readJSON ( "package.json" ) ,
8
8
concat : {
9
+ options : {
10
+ banner : "/*!\n" +
11
+ " * jQuery Validation Plugin v<%= pkg.version %>\n" +
12
+ " *\n" +
13
+ " * <%= pkg.homepage %>\n" +
14
+ " *\n" +
15
+ " * Copyright (c) <%= grunt.template.today('yyyy') %> <%= pkg.author.name %>\n" +
16
+ " * Released under the <%= _.pluck(pkg.licenses, 'type').join(', ') %> license\n" +
17
+ " */\n"
18
+ } ,
9
19
// used to copy to dist folder
10
20
dist : {
11
21
files : {
Original file line number Diff line number Diff line change 1
- /*!
2
- * jQuery Validation Plugin 1.12.0pre
3
- *
4
- * http://bassistance.de/jquery-plugins/jquery-plugin-validation/
5
- * http://docs.jquery.com/Plugins/Validation
6
- *
7
- * Copyright 2013 Jörn Zaefferer
8
- * Released under the MIT license:
9
- * http://www.opensource.org/licenses/mit-license.php
10
- */
11
1
( function ( ) {
12
2
13
3
function stripHtml ( value ) {
Original file line number Diff line number Diff line change 1
- /*!
2
- * jQuery Validation Plugin 1.12.0pre
3
- *
4
- * http://jqueryvalidation.org/
5
- *
6
- * Copyright 2013 Jörn Zaefferer
7
- * Released under the MIT license:
8
- * http://www.opensource.org/licenses/mit-license.php
9
- */
10
-
11
1
( function ( $ ) {
12
2
13
3
$ . extend ( $ . fn , {
You can’t perform that action at this time.
0 commit comments