This repository was archived by the owner on May 22, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGruntfile.js
More file actions
97 lines (92 loc) · 2.08 KB
/
Copy pathGruntfile.js
File metadata and controls
97 lines (92 loc) · 2.08 KB
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
module.exports = function (grunt) {
grunt.initConfig({
jsonlint: {
all: {
src: ['package.json', '.jshintrc']
}
},
jshint: {
all: ['Gruntfile.js', 'grunt/**/*.js', 'src/*.js', 'tests/*.js'],
options: {
jshintrc: '.jshintrc'
}
},
beforeUglify: {
all: {
files: {
'dist/cookie.js': ['src/cookie.js'],
'dist/cookie.before-min.js': ['dist/cookie.js']
},
options: {
header: '/*!\n' +
' * Cookie JavaScript Library v<%= grunt.file.readJSON(\'package.json\').version %>\n' +
' * \n' +
' * Copyright 2013-2014 Evertton de Lima\n' +
' * Released under The MIT License\n' +
' * http://evertton.mit-license.org/\n' +
' */\n'
}
}
},
uglify: {
all: {
files: {
'dist/cookie.min.js': ['dist/cookie.before-min.js']
},
options: {
preserveComments: 'some',
report: 'min',
beautify: {
ascii_only: true
},
compress: {
hoist_funs: false,
join_vars: false,
loops: false,
unused: false
}
}
}
},
afterUglify: {
all: {
files: {
'dist/cookie.min.js.tmp': ['dist/cookie.min.js']
},
options: {
tempFiles: ['dist/cookie.min.js.tmp', 'dist/cookie.before-min.js']
}
}
},
doxx: {
all: {
src: 'src',
target: 'docs'
},
gh_page: {
src: 'src',
target: 'tmp/docs',
options: {
template: '.template.doxx'
}
}
},
jasmine: {
src: 'src/*.js',
options: {
specs: 'tests/*.spec.js'
}
}
});
grunt.loadNpmTasks('grunt-jsonlint');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-doxx');
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadTasks('.grunt/tasks');
grunt.registerTask('check_syntax', ['jsonlint', 'jshint']);
grunt.registerTask('test', ['jasmine']);
grunt.registerTask('build', ['beforeUglify', 'uglify', 'afterUglify']);
grunt.registerTask('docs', ['doxx:all']);
grunt.registerTask('default', ['check_syntax', 'test', 'build']);
};