mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-24 13:53:43 +00:00
chore: Update slim-jim
This commit is contained in:
parent
e86bafecd2
commit
bbd3a3fd76
1 changed files with 4 additions and 4 deletions
8
angularFiles.js
vendored
8
angularFiles.js
vendored
|
|
@ -157,18 +157,18 @@ angularFiles = {
|
||||||
// Execute only in slim-jim
|
// Execute only in slim-jim
|
||||||
if (typeof JASMINE_ADAPTER !== 'undefined') {
|
if (typeof JASMINE_ADAPTER !== 'undefined') {
|
||||||
// SlimJim config
|
// SlimJim config
|
||||||
files = [JASMINE_ADAPTER];
|
files = [JASMINE, JASMINE_ADAPTER];
|
||||||
angularFiles.jstd.forEach(function(pattern) {
|
angularFiles.jstd.forEach(function(pattern) {
|
||||||
// replace angular source
|
// replace angular source
|
||||||
if (pattern === '@angularSrc') files = files.concat(angularFiles.angularSrc);
|
if (pattern === '@angularSrc') files = files.concat(angularFiles.angularSrc);
|
||||||
// ignore jstd files
|
// ignore jstd and jasmine files
|
||||||
else if (!/jstd-(scenario-)?adapter/.test(pattern)) files.push(pattern);
|
else if (!/jstd|jasmine/.test(pattern)) files.push(pattern);
|
||||||
});
|
});
|
||||||
|
|
||||||
exclude = angularFiles.jstdExclude;
|
exclude = angularFiles.jstdExclude;
|
||||||
|
|
||||||
autoWatch = true;
|
autoWatch = true;
|
||||||
autoWatchInterval = 1;
|
autoWatchInterval = 1;
|
||||||
logLevel = LOG_ERROR;
|
logLevel = LOG_INFO;
|
||||||
logColors = true;
|
logColors = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue