Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
LINAGORA
L
LGS
Labs
voice-web
Commits
035c79fd
Commit
035c79fd
authored
Sep 23, 2017
by
Michael Henretty
Browse files
fix autoprefixer duplication in cssnext
parent
8675a51d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gulpfile.js
gulpfile.js
+2
-2
No files found.
gulpfile.js
View file @
035c79fd
...
...
@@ -68,8 +68,8 @@ function compileCSS() {
var
cssnext
=
require
(
'
postcss-cssnext
'
);
var
cssnano
=
require
(
'
cssnano
'
);
var
plugins
=
[
cssnext
({
browsers
:
[
'
last 2 versions
'
]}),
cssnano
()
cssnext
({
browsers
:
[
'
last 2 versions
'
]}),
cssnano
(
{
autoprefixer
:
false
}
)
];
return
gulp
.
src
(
PATH_CSS
)
.
pipe
(
postcss
(
plugins
))
...
...
Write
Preview
Markdown
is supported
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