From 782094e0c627489c6b0e04cfb93eaaab5eb3462d Mon Sep 17 00:00:00 2001 From: Eric Stout Date: Mon, 9 May 2016 15:27:48 -0700 Subject: [PATCH 1/4] 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 56a6d15e0be435e220d8c1e7f1cb899da6a5e4ae Mon Sep 17 00:00:00 2001 From: Eric Stout Date: Mon, 9 May 2016 15:28:16 -0700 Subject: [PATCH 2/4] 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 3519eae17d880824006cdd1dd7078685c323552b Mon Sep 17 00:00:00 2001 From: Eric Stout Date: Mon, 9 May 2016 15:35:50 -0700 Subject: [PATCH 3/4] 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 262a565b9678ab04119fd076b1a57f1a913692b8 Mon Sep 17 00:00:00 2001 From: Eric Stout Date: Mon, 9 May 2016 15:48:31 -0700 Subject: [PATCH 4/4] 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/'))