forked from hilios/jQuery.countdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
163 lines (157 loc) · 4.17 KB
/
Gruntfile.js
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
module.exports = function(grunt) {
'use strict';
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
dirs: {
src: './src',
lib: './lib',
bin: './build',
test: './test',
dest: './dist'
},
// project utils
pluginName: '<%= pkg.name.replace(/-/, ".") %>',
license: grunt.file.read('LICENSE.md').split('\n').splice(3).join('\n'),
banner: '/*!\n' +
' * <%= pkg.description %> v<%= pkg.version %> ' +
'(<%= pkg.homepage %>)\n' +
' * Copyright (c) <%= grunt.template.today("yyyy") %> ' +
'<%= pkg.author %>\n' +
' * <%= license.replace(/\\n/gm, "\\n * ") %>\n' +
' */\n',
// contrib-clean
clean: ['<%= dirs.dest %>'],
// contrib-compress
compress: {
release: {
options: {
archive: '<%= dirs.bin %>/<%= pluginName %>-<%= pkg.version %>.zip'
},
expand: true,
cwd: '<%= dirs.dest %>',
src: ['**/*'],
dest: '<%= pluginName %>-<%= pkg.version %>'
}
},
// contrib-jshint
jshint: {
options: {
jshintrc: true
},
all: [
'Gruntfile.js',
'<%= dirs.src %>/**/*.js',
'<%= dirs.test %>/**/*.js'
]
},
// contrib-uglify
uglify: {
dev: {
files: {
'<%= dirs.dest %>/<%= pluginName %>.js':
['<%= dirs.src %>/**/*.js']
},
options: {
beautify: true,
compress: false,
mangle: false,
preserveComments: false
}
},
min: {
files: {
'<%= dirs.dest %>/<%= pluginName %>.min.js':
['<%= dirs.src %>/**/*.js']
},
options: {
report: 'min'
}
},
options: {
banner: '<%= banner %>'
}
},
jsonlint: {
all: {
src: ['*.json']
}
},
// karma
karma: {
options: {
configFile: 'karma.conf.js',
autoWatch: true,
singleRun: false
},
watch: {
},
unit: {
autoWatch: false,
singleRun: true
}
},
// version
version: {
release: {
src: ['*.json']
}
}
});
// Load grunt tasks
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-jsonlint');
grunt.loadNpmTasks('grunt-karma');
grunt.loadNpmTasks('grunt-version');
// Test
grunt.registerTask('test', ['jshint', 'jsonlint', 'test:scenarios']);
grunt.registerTask('test:unit', ['jshint', 'jsonlint', 'karma:unit']);
// Test scenarios
grunt.registerTask('test:scenarios',
'Test multiple scenarios', function() {
var scenariosConf = require('./test/scenarios.json'),
scenarios = Object.keys(scenariosConf),
scenariosTasks = [],
karmaConf = {},
karmaFiles;
// Fetchs the values of karma conf file.
require('./karma.conf.js')({set: function(values) {
karmaConf = values;
}});
karmaFiles = karmaConf.files.filter(function(file) {
return !(/vendor/.test(file));
});
grunt.log.write('Configuring scenarios:'.cyan +
' %s found...'.replace(/%s/, scenarios.length));
scenarios.forEach(function(scenario) {
var value = scenariosConf[scenario],
confName = 'karma.scenario_' + scenario.replace(/[._-]/gi, '_'),
conf = {
autoWatch: false,
singleRun: true,
logLevel: 'OFF',
reporters: 'dots'
};
if (Array.isArray(value)) {
conf.options = {
files: value.concat(karmaFiles)
};
} else {
conf.configFile = value;
}
// Register the scenario
grunt.config.set(confName, conf);
scenariosTasks.push(confName.replace(/\./, ':'));
});
grunt.log.ok();
// Run all scenarios tasks
grunt.task.run(scenariosTasks);
});
// Build
grunt.registerTask('build', ['uglify', 'test:all', 'version', 'compress']);
// Develop
grunt.registerTask('default', ['karma:watch']);
};