Skip to content

Commit aa2f21a

Browse files
committed
Build: Fix minified header, use actual new lines.
Also fix homepage URL in source Fixes jquery-validation#1053
1 parent ca20504 commit aa2f21a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Gruntfile.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ grunt.initConfig({
1818
options: {
1919
preserveComments: false,
2020
banner: "/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - " +
21-
"<%= grunt.template.today('m/d/yyyy') %>\\n" +
22-
"<%= pkg.homepage ? '* ' + pkg.homepage + '\\n' : '' %>" +
23-
"* Copyright (c) <%= grunt.template.today('yyyy') %> <%= pkg.author.name %>;" +
24-
" Licensed <%= _.pluck(pkg.licenses, 'type').join(', ') %> */"
21+
"<%= grunt.template.today('m/d/yyyy') %>\n" +
22+
" * <%= pkg.homepage %>\n" +
23+
" * Copyright (c) <%= grunt.template.today('yyyy') %> <%= pkg.author.name %>;" +
24+
" Licensed <%= _.pluck(pkg.licenses, 'type').join(', ') %> */\n"
2525
},
2626
all: {
2727
files: {

src/core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* jQuery Validation Plugin 1.12.0pre
33
*
4-
* http://jqueryvalidation.org//
4+
* http://jqueryvalidation.org/
55
*
66
* Copyright 2013 Jörn Zaefferer
77
* Released under the MIT license:

0 commit comments

Comments
 (0)