Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Toolchain
sgc
Commits
3eec0067
Commit
3eec0067
authored
Oct 09, 2016
by
Philipp Nowinski
Browse files
[BUGFIX] emit silent error if css linting fails
parent
a15e40e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
gulp/css.js
View file @
3eec0067
...
...
@@ -100,7 +100,10 @@ gulp.task('css:qa', function() {
return
gulp
.
src
([
settings
.
getPath
()
+
'
/
'
+
config
.
directories
.
sass
+
'
/**/*.scss
'
,
'
!**/*scsslint_tmp*.scss
'
].
concat
(
config
.
css
.
excludeFromQa
))
.
pipe
(
plugins
.
scssLint
({
customReport
:
plugins
.
scssLintStylish
}));
}))
.
on
(
'
error
'
,
function
(
error
)
{
plugins
.
util
.
log
(
error
);
});
});
gulp
.
task
(
'
css
'
,
gulp
.
series
(
gulp
.
parallel
(
'
css:sprites
'
,
'
css:svg
'
,
'
css:qa
'
),
processCss
,
'
css:abovethefold
'
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment