-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
90 lines (82 loc) · 2.54 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
'use strict';
module.exports = function (grunt) {
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt);
// Configurable paths for the application
var appConfig = {
app: 'src',
dist: 'dist'
};
grunt.initConfig({
// Project settings
pkg: grunt.file.readJSON('package.json'),
appConfig: appConfig,
// Empties folders to start fresh
clean: {
dist: {
files: [{
dot: true,
src: [
'<%= appConfig.dist %>/{,*/}*'
]
}]
}
},
mochaTest: {
test: {
options: {
reporter: 'spec',
//captureFile: 'test-results.txt', // Optionally capture the reporter output to a file
quiet: false, // Optionally suppress output to standard out (defaults to false)
clearRequireCache: false // Optionally clear the require cache before running tests (defaults to false)
},
src: ['test/**/*.js']
}
},
uglify: {
options: {
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
'<%= grunt.template.today("yyyy-mm-dd") %> | Logicify | ' +
'MIT License (https://raw.githubusercontent.com/Logicify/sel-js/master/LICENSE)*/\n'
},
minimize: {
options: {
beautify: false,
compress: true,
sourceMap: true
},
files: {
'<%= appConfig.dist %>/sel.min.js': ['<%= appConfig.app %>/*.js']
}
},
beautify: {
options: {
beautify: {
width: 80,
beautify: true
},
compress: false,
sourceMap: false,
mangle: false
},
files: {
'<%= appConfig.dist %>/sel.js': ['<%= appConfig.app %>/*.js']
}
}
}
});
grunt.registerTask('compile', [
'clean:dist',
'uglify:minimize',
'uglify:beautify'
]);
grunt.registerTask('test', [
'compile',
'mochaTest'
]);
grunt.registerTask('build', [
'compile',
'test'
]);
grunt.registerTask('default', 'build');
};