forked from jeffharrell/minicart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GruntFile.js
92 lines (76 loc) · 2.15 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
'use strict';
module.exports = function (grunt) {
// Configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
options: grunt.file.readJSON('.jshintrc'),
all: ['src/**/*.js', 'test/**/*.js']
},
browserify: {
all: {
files: {
'dist/minicart.js': ['src/**/*.js']
}
}
},
uglify: {
all: {
files: {
'dist/minicart.min.js': ['dist/minicart.js']
}
}
},
usebanner: {
all: {
options: {
banner: grunt.file.read('.banner')
},
files: {
src: [ 'dist/**/*.js' ]
}
}
},
mocha: {
browser: [ 'test/functional/**/*.html' ],
options: {
bail: true,
log: true,
mocha: {},
reporter: 'Spec',
run: true,
timeout: 10000
}
},
mochaTest: {
all: {
options: {
reporter: 'spec'
},
src: ['test/unit/**/*.js']
}
},
watch: {
scripts: {
files: ['src/**/*'],
tasks: ['build'],
options: {
spawn: false
}
}
}
});
// Dependencies
grunt.task.loadNpmTasks('grunt-contrib-jshint');
grunt.task.loadNpmTasks('grunt-contrib-uglify');
grunt.task.loadNpmTasks('grunt-contrib-watch');
grunt.task.loadNpmTasks('grunt-banner');
grunt.task.loadNpmTasks('grunt-mocha');
grunt.task.loadNpmTasks('grunt-mocha-test');
grunt.task.loadNpmTasks('grunt-browserify');
grunt.task.loadTasks('./tasks');
// Tasks
grunt.registerTask('lint', ['jshint']);
grunt.registerTask('test', ['lint', 'build', 'mochaTest', 'mocha']);
grunt.registerTask('build', ['browserify', 'themify', 'uglify', 'usebanner']);
};