We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb6aa59 commit 78a6aa9Copy full SHA for 78a6aa9
.gitignore
@@ -0,0 +1 @@
1
+*.min.js
grunt.js
@@ -3,6 +3,10 @@ module.exports = function (grunt) {
3
'use strict';
4
5
grunt.initConfig({
6
+ pkg: '<json:cookie.jquery.json>',
7
+ meta: {
8
+ banner: '/*! <%= pkg.title %> v<%= pkg.version %> | <%= pkg.licenses[0].type %> */'
9
+ },
10
qunit: {
11
files: ['test/index.html']
12
},
@@ -29,6 +33,12 @@ module.exports = function (grunt) {
29
33
define: true,
30
34
jQuery: true
31
35
}
36
37
+ min: {
38
+ dist: {
39
+ src: ['<banner>', 'jquery.cookie.js'],
40
+ dest: 'jquery.cookie-<%= pkg.version %>.min.js'
41
+ }
32
42
43
});
44
0 commit comments