Skip to content

Commit f4d0fd8

Browse files
committed
Build: Remove a bad @ symbol from minified version sources.
We want v1.2.3 in both the unminified & minified builds, not v@1.2.3.
1 parent 9032c9c commit f4d0fd8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Gruntfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ var max = [ "dist/jquery.color.js", "dist/jquery.color.svg-names.js" ],
88
minify = {
99
main: {
1010
options: {
11-
banner: "/*! jQuery Color v@<%= pkg.version %> http://github.com/jquery/jquery-color | jquery.org/license */\n"
11+
banner: "/*! jQuery Color v<%= pkg.version %> http://github.com/jquery/jquery-color | jquery.org/license */\n"
1212
},
1313
files: {}
1414
},
1515
svg: {
1616
options: {
17-
banner: "/*! jQuery Color v@<%= pkg.version %> SVG Color Names http://github.com/jquery/jquery-color | jquery.org/license */\n"
17+
banner: "/*! jQuery Color v<%= pkg.version %> SVG Color Names http://github.com/jquery/jquery-color | jquery.org/license */\n"
1818
},
1919
files: {}
2020
},
2121
combined: {
2222
options: {
23-
banner: "/*! jQuery Color v@<%= pkg.version %> with SVG Color Names http://github.com/jquery/jquery-color | jquery.org/license */\n"
23+
banner: "/*! jQuery Color v<%= pkg.version %> with SVG Color Names http://github.com/jquery/jquery-color | jquery.org/license */\n"
2424
},
2525
files: {}
2626
}

0 commit comments

Comments
 (0)