-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGruntfile.js
78 lines (69 loc) · 2.16 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
//
module.exports = function(grunt) {
var testServerPort = 9000;
grunt.initConfig({
clean: ['node_modules', 'bower_components', 'lib'],
bower: {
install: {
options: {
targetDir: './lib',
layout: 'byComponent',
install: true,
verbose: true,
cleanTargetDir: true,
cleanBowerDir: false,
bowerOptions: {
forceLatest: true,
production: false
}
}
}
},
connect: {
'test-server': {
options: {
port: testServerPort,
base: '.'
}
}
},
shell: {
'mocha-phantomjs-tests': {
command: 'node_modules/mocha-phantomjs/bin/mocha-phantomjs -R spec http://localhost:' + testServerPort + '/test/test.html',
options: {
failOnError: true,
stdout: true,
stderr: true
}
}
},
jshint: {
options: {
force: true,
browser: true,
'-W069': true
},
src: ['src/**/*.js']
},
copy: {
dist: {
src: 'src/i18n.js',
dest: 'i18n.js'
},
docs: {
src: 'src/i18n.md',
dest: 'docs/i18n.md'
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-bower-task');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.registerTask('init', ['bower']);
grunt.registerTask('build', ['bower', 'jshint', 'connect', 'shell:mocha-phantomjs-tests']);
grunt.registerTask('test', ['connect', 'shell:mocha-phantomjs-tests']);
grunt.registerTask('dist', ['build', 'copy:dist', 'copy:docs']);
};