-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulp.config.js
174 lines (160 loc) · 3.79 KB
/
gulp.config.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
164
165
166
167
168
169
170
171
172
173
174
module.exports = function() {
var client = './src/client/';
var server = './src/server/';
var clientApp = client + 'app/';
var report = './report/';
var root = './';
var specRunnerFile = 'specs.html';
var temp = './.tmp/';
var wiredep = require('wiredep');
var bowerFiles = wiredep({ devDependencies: true })['js'];
var bower = {
json: require('./bower.json'),
directory: './bower_components/',
ignorePath: '../..'
};
var nodeModules = 'node_modules';
var config = {
/**
* File paths
*/
// all javascript that we want to vet
alljs: [
'./src/**/*.js',
'./*.js'
],
build: './build/',
client: client,
css: temp + 'styles.css',
fonts: bower.directory + 'font-awesome/fonts/**/*.*',
html: client + '**/*.html',
htmltemplates: clientApp + '**/*.html',
images: client + 'images/**/*.*',
index: client + 'index.html',
// app js, with no specs
js: [
clientApp + '**/*.module.js',
clientApp + '**/*.js',
'!' + clientApp + '**/*.spec.js'
],
jsOrder: [
'**/app.module.js',
'**/*.module.js',
'**/*.js'
],
less: client + 'styles/styles.less',
report: report,
root: root,
server: server,
source: 'src/',
stubsjs: [
bower.directory + 'angular-mocks/angular-mocks.js',
client + 'stubs/**/*.js'
],
temp: temp,
/**
* optimized files
*/
optimized: {
app: 'app.js',
lib: 'lib.js'
},
/**
* plato
*/
plato: { js: clientApp + '**/*.js' },
/**
* browser sync
*/
browserReloadDelay: 1000,
/**
* template cache
*/
templateCache: {
file: 'templates.js',
options: {
module: 'app.core',
root: 'app/',
standalone: false
}
},
/**
* Bower and NPM files
*/
bower: bower,
packages: [
'./package.json',
'./bower.json'
],
/**
* specs.html, our HTML spec runner
*/
specRunner: client + specRunnerFile,
specRunnerFile: specRunnerFile,
/**
* The sequence of the injections into specs.html:
* 1 testlibraries
* mocha setup
* 2 bower
* 3 js
* 4 spechelpers
* 5 specs
* 6 templates
*/
testlibraries: [
nodeModules + '/mocha/mocha.js',
nodeModules + '/chai/chai.js',
nodeModules + '/sinon-chai/lib/sinon-chai.js'
],
specHelpers: [client + 'test-helpers/*.js'],
specs: [clientApp + '**/*.spec.js'],
serverIntegrationSpecs: [client + '/tests/server-integration/**/*.spec.js'],
/**
* Node settings
*/
nodeServer: server + 'app.js',
defaultPort: '8001'
};
/**
* wiredep and bower settings
*/
config.getWiredepDefaultOptions = function() {
var options = {
bowerJson: config.bower.json,
directory: config.bower.directory,
ignorePath: config.bower.ignorePath
};
return options;
};
/**
* karma settings
*/
config.karma = getKarmaOptions();
return config;
////////////////
function getKarmaOptions() {
var options = {
files: [].concat(
bowerFiles,
config.specHelpers,
clientApp + '**/*.module.js',
clientApp + '**/*.js',
temp + config.templateCache.file,
config.serverIntegrationSpecs
),
exclude: [],
coverage: {
dir: report + 'coverage',
reporters: [
// reporters not supporting the `file` property
{ type: 'html', subdir: 'report-html' },
{ type: 'lcov', subdir: 'report-lcov' },
{ type: 'text-summary' } //, subdir: '.', file: 'text-summary.txt'}
]
},
preprocessors: {}
};
options.preprocessors[clientApp + '**/!(*.spec)+(.js)'] = ['coverage'];
return options;
}
};