-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulp.config.js
209 lines (192 loc) · 5.04 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
// define the config as a node module
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');
// we can use wiredep to get bower files
var bowerFiles = wiredep({ devDependencies: true })['js'];
var bower = {
json: require('./bower.json'),
directory: './bower_components/',
ignorePath: '../..'
};
var nodeModules = 'node_modules';
var config = {
// all javascript that we want to vet
alljs: [
'./src/**/*.js',
'./*.js'
],
//??appConfigTarget : clientApp + 'core/',
// build folder where production code goes, app.js depends on this
build: './build/',
client: client,
//?constantsSrvc: clientApp + 'core/constants.js',
css: temp + 'styles.css',
//fonts: bower.directory + 'font-awesome/fonts/**/*.*',
fonts: [
bower.directory + 'font-awesome/fonts/**/*.*',
bower.directory + 'bootstrap/dist/fonts/*.*'
],
html: client + '**/*.html',
htmltemplates: clientApp + '**/*.html',
images: client + 'images/**/*.*',
favico: 'favicon.ico',
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'
],
// name of the input less file
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,
/**
* env config files
*/
envs : {
glob: '**/*.env.js',
dev: clientApp + 'dev.env.js',
build: './envs/build.env.js'
},
/**
* names of files output from optimize task,
*/
optimized: {
// app.js will contain all application js files concatenated into one
app: 'app.js',
// app.js will contain all 3rd party lib js files concatenated into one
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 + '/chai/chai.js',
nodeModules + '/mocha/mocha.js',
nodeModules + '/sinon-chai/lib/sinon-chai.js'
],
specHelpers: [client + 'test-helpers/*.js'],
specs: [clientApp + '**/*.spec.js'],
/**
* tests that deal with server level integration
*/
serverIntegrationSpecs: [],
/**
* Node settings
*/
nodeServer: server + 'app.js',
defaultPort: '8001',
warFile: 'ROOT.war'
};
/**
* 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;
////////////////
/**
* returns Karma options
*/
function getKarmaOptions() {
var options = {
files: [].concat(
// all 3rd party files & libs
bowerFiles,
// js files that are run at dev time to help tests, i.e. stubs or mocks
config.specHelpers,
// load application js files, module defining files first
clientApp + '**/*.module.js',
clientApp + '**/*.js',
temp + config.templateCache.file,
config.serverIntegrationSpecs
),
exclude: [],
coverage: {
// report directory to put coverage reports in
dir: report + 'coverage',
// settings for karma to define what reports to show
reporters: [
// reporters not supporting the `file` property
{ type: 'html', subdir: 'report-html' },
{ type: 'lcov', subdir: 'report-lcov' },
// omit filename will output to console
{ type: 'text-summary' } //, subdir: '.', file: 'text-summary.txt'}
]
},
preprocessors: {}
};
// specify that coverage will be applied to code tested, but exclude specs from coverage
options.preprocessors[clientApp + '**/!(*.spec)+(.js)'] = ['coverage'];
return options;
}
};