18 lines
482 B
JavaScript
18 lines
482 B
JavaScript
module.exports = {
|
|
beforeConcat: ['src/**/*.js'],
|
|
afterConcat: [
|
|
'lib/jasmine-core/jasmine-html.js',
|
|
'lib/jasmine-core/jasmine.js'
|
|
],
|
|
options: {
|
|
/* While it's possible that we could be considering unwanted prototype methods, mostly
|
|
* we're doing this because the objects are being used as maps.
|
|
*/
|
|
forin: false,
|
|
|
|
/* We're fine with functions defined inside loops (setTimeout functions, etc) */
|
|
loopfunc: true
|
|
},
|
|
all: ['src/**/*.js']
|
|
};
|