-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
154 lines (131 loc) · 3.3 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
'use strict';
var interfaces = require('os').networkInterfaces();
var info;
if (typeof(interfaces.en0) !== 'undefined'){
info = interfaces.en0;
}
else {
info = interfaces.eth0;
}
var networkAddress = info.filter(function(i){ return i.family === 'IPv4'; })[0].address;
console.log('Network address is ' + networkAddress);
// All JS source files we want to check.
var allSources = ['Gruntfile.js', 'karma.conf.js', 'e2e-tests/**/*.js', 'app/**/*.js'];
module.exports = function(grunt){
// Use Just In Time Grunt to prevent loading all modules via grunt.loadNpmTask(*) on every run.
require('jit-grunt')(grunt, {
protractor: 'grunt-protractor-runner',
ngconstant: 'grunt-ng-constant'
});
grunt.initConfig({
// Run Karma to run Jasmine unit test.
karma: {
options: {
configFile: 'karma.conf.js',
singleRun: true
},
unit: {}
},
// Run Protractor end to end tests.
protractor: {
options: {
configFile: 'e2e-tests/protractor.conf.js'
},
local: {},
all: {}
},
// Lint all files for JS style violations.
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: allSources
},
// Lint for two spaces as indentation as opposed to tabs.
lintspaces: {
options: {
trailingspaces: true,
indentation: 'spaces',
spaces: 2
},
all: {
src: allSources
}
},
// Lint Bootstrap HTML.
bootlint: {
options: {
stoponerror: true
},
files: ['**.html']
},
// Simple web server in order to run test.
connect: {
options: {
port: 8000,
hostname: '0.0.0.0',
protocol: 'http',
base: './'
},
server: {},
// Run local development version.
serve: {
options: {
keepalive: true,
port: 7000,
open: true,
livereload: true
}
}
},
// Prepare constants.
ngconstant: {
build: {
options: {
dest: 'app/config/constants.js',
name: 'Marvin.Constants'
},
constants: {
SERVICES: grunt.file.readJSON('app/config/constants/services.json')
}
}
},
// Copy files to folder for creating RPMs.
copy: {
dist: {
files: [
{
expand: true,
dot: false,
dest: './src/main/resources/site/',
src: [
'bower_components/**/*',
'app/**/*.js',
'index.html',
'!node_modules/'
]
}
]
}
},
// Run a watch that re-compiles the application and runs the tests.
watch: {
options: {
livereload: true,
spawn: true
},
files: allSources,
tasks: ['ci-test']
}
});
// Lint files.
grunt.registerTask('lint', ['ngconstant:build', 'bootlint', 'lintspaces', 'jshint']);
// Build.
grunt.registerTask('build', ['copy:dist']);
// Run all tests.
grunt.registerTask('test', ['lint', 'connect:server', 'karma:unit']);
// Run the CI tests - at the moment excluding the end to end tests.
grunt.registerTask('ci-test', ['lint', 'connect:server', 'karma:unit']);
// Default task.
grunt.registerTask('default', ['test', 'build']);
};