Skip to content

Commit

Permalink
Fix Gulp complication
Browse files Browse the repository at this point in the history
  • Loading branch information
mblode committed Jan 30, 2019
1 parent 33c614d commit febe95b
Show file tree
Hide file tree
Showing 10 changed files with 1,632 additions and 13 deletions.
928 changes: 926 additions & 2 deletions css/marx.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/marx.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/marx.min.css.map

Large diffs are not rendered by default.

697 changes: 695 additions & 2 deletions css/marx.styl.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/marx.styl.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/marx.styl.min.css.map

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ function scss() {
.pipe(plumber())
.pipe(sourcemaps.init())
.pipe(sass({ includePaths: [ path.resolve(__dirname, 'node_modules') ] }))
.pipe(postcss([autoprefixer(), cssnano()]))
.pipe(postcss([autoprefixer()]))
.pipe(gulp.dest('css/'))
.pipe(postcss([cssnano()]))
.pipe(rename({ suffix: '.min' }))
.pipe(cleanCss({ compatibility: 'ie8' }))
.pipe(sourcemaps.write('.'))
Expand All @@ -60,9 +61,10 @@ function styl() {
.pipe(plumber())
.pipe(sourcemaps.init())
.pipe(stylus())
.pipe(postcss([autoprefixer(), cssnano()]))
.pipe(postcss([autoprefixer()]))
.pipe(rename({ suffix: '.styl' }))
.pipe(gulp.dest('css/'))
.pipe(postcss([cssnano()]))
.pipe(rename({ suffix: '.min' }))
.pipe(cleanCss({ compatibility: 'ie8' }))
.pipe(sourcemaps.write('.'))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "marx-css",
"version": "3.0.5",
"version": "3.0.6",
"description": "The classless CSS reset (perfect for Communists).",
"browserslist": [
"> 0.5%",
Expand Down
2 changes: 1 addition & 1 deletion scss/marx.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

@import 'sanitize.css/sanitize';

/*! Marx v3.0.0 - The classless CSS reset (perfect for Communists) | MIT License | https://github.com/mblode/marx */
/*! Marx v3.0.6 - The classless CSS reset (perfect for Communists) | MIT License | https://github.com/mblode/marx */
@import 'variables';
@import 'base';
@import 'typography';
Expand Down
2 changes: 1 addition & 1 deletion styl/marx.styl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

@import '_sanitize'

/*!! Marx v3.0.0 - The classless CSS reset (perfect for Communists) | MIT License | https://github.com/mblode/marx */
/*!! Marx v3.0.6 - The classless CSS reset (perfect for Communists) | MIT License | https://github.com/mblode/marx */
@import '_variables'
@import '_base'
@import '_typography'
Expand Down

0 comments on commit febe95b

Please sign in to comment.