Skip to content

Commit febe95b

Browse files
committed
Fix Gulp complication
1 parent 33c614d commit febe95b

10 files changed

+1632
-13
lines changed

css/marx.css

Lines changed: 926 additions & 2 deletions
Large diffs are not rendered by default.

css/marx.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/marx.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/marx.styl.css

Lines changed: 695 additions & 2 deletions
Large diffs are not rendered by default.

css/marx.styl.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/marx.styl.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gulpfile.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ function scss() {
3838
.pipe(plumber())
3939
.pipe(sourcemaps.init())
4040
.pipe(sass({ includePaths: [ path.resolve(__dirname, 'node_modules') ] }))
41-
.pipe(postcss([autoprefixer(), cssnano()]))
41+
.pipe(postcss([autoprefixer()]))
4242
.pipe(gulp.dest('css/'))
43+
.pipe(postcss([cssnano()]))
4344
.pipe(rename({ suffix: '.min' }))
4445
.pipe(cleanCss({ compatibility: 'ie8' }))
4546
.pipe(sourcemaps.write('.'))
@@ -60,9 +61,10 @@ function styl() {
6061
.pipe(plumber())
6162
.pipe(sourcemaps.init())
6263
.pipe(stylus())
63-
.pipe(postcss([autoprefixer(), cssnano()]))
64+
.pipe(postcss([autoprefixer()]))
6465
.pipe(rename({ suffix: '.styl' }))
6566
.pipe(gulp.dest('css/'))
67+
.pipe(postcss([cssnano()]))
6668
.pipe(rename({ suffix: '.min' }))
6769
.pipe(cleanCss({ compatibility: 'ie8' }))
6870
.pipe(sourcemaps.write('.'))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "marx-css",
3-
"version": "3.0.5",
3+
"version": "3.0.6",
44
"description": "The classless CSS reset (perfect for Communists).",
55
"browserslist": [
66
"> 0.5%",

scss/marx.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
@import 'sanitize.css/sanitize';
44

5-
/*! Marx v3.0.0 - The classless CSS reset (perfect for Communists) | MIT License | https://github.com/mblode/marx */
5+
/*! Marx v3.0.6 - The classless CSS reset (perfect for Communists) | MIT License | https://github.com/mblode/marx */
66
@import 'variables';
77
@import 'base';
88
@import 'typography';

styl/marx.styl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
@import '_sanitize'
44

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

0 commit comments

Comments
 (0)