From 899a0d96346a8a7bb29806d81b0ec89694f402b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20H=C3=B6rmann?= Date: Fri, 17 Jun 2016 17:25:15 +0200 Subject: [PATCH 1/5] Removed external resource to Google font "Lato" because it is not required since version 1.00 --- src/share-button.styl | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/share-button.styl b/src/share-button.styl index 9d5d46f..3b56cf6 100644 --- a/src/share-button.styl +++ b/src/share-button.styl @@ -1,5 +1,3 @@ -@import url('//fonts.googleapis.com/css?family=Lato'); - network($amt) $width = ($amt * 60)px @@ -218,4 +216,3 @@ share-button for name in networks socialIcon(name) - From 9c9b9a8680355647cbfabead815cf32ad504aa1c Mon Sep 17 00:00:00 2001 From: Eric Stout Date: Mon, 9 May 2016 15:27:48 -0700 Subject: [PATCH 2/5] Removes Pioneer from package.json --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 4f3d7d6..2fe90f4 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,6 @@ "stylus": "^0.52.4" }, "scripts": { - "test": "pioneer", "build": "gulp build", "unbuild": "gulp unbuild", "build-css": "gulp style", From c91d5ff21052515db569f1cf30613d606882e1cf Mon Sep 17 00:00:00 2001 From: Eric Stout Date: Mon, 9 May 2016 15:28:16 -0700 Subject: [PATCH 3/5] Deletes pioneer.json --- pioneer.json | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 pioneer.json diff --git a/pioneer.json b/pioneer.json deleted file mode 100644 index 4ad6253..0000000 --- a/pioneer.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "feature": "tests/features", - "require": [ - "tests/steps", - "tests/widgets", - "tests/helpers" - ], - "format": "pioneerformat.js", - "driver": "phantomjs", - "error_formatter": "errorformat.js", - "preventReload": false, - "coffee": true, - "verbose": true -} From 83eafc5d67800a082e20de8b1c5b403a177de27c Mon Sep 17 00:00:00 2001 From: Eric Stout Date: Mon, 9 May 2016 15:35:50 -0700 Subject: [PATCH 4/5] Removes pioneer as a dev dep --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index 2fe90f4..dd2bcfc 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,6 @@ "gulp-shell": "^0.5.0", "gulp-uglify": "^1.4.1", "minifier": "^0.7.1", - "pioneer": "^0.11.6", "postcss-svg": "^1.0.1", "poststylus": "^0.2.1", "stylus": "^0.52.4" From 510ab9240623107a9ede008c8931b0fd7a83d155 Mon Sep 17 00:00:00 2001 From: Eric Stout Date: Mon, 9 May 2016 15:48:31 -0700 Subject: [PATCH 5/5] Adds height and widths to svgs --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 9024722..9b5b580 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -21,7 +21,7 @@ gulp.task('style', function() { use: [ autoprefixer(), axis(), - poststylus([postcssSVG({ paths: ['./src/svg' ]})]) + poststylus([postcssSVG({ paths: ['./src/svg' ], defaults: "[height]:100%; [width]:100%;" })]) ] })) .pipe(gulp.dest('dist/'))