From 940cfac548c5dde7b55b3149e386a3ed674ed91c Mon Sep 17 00:00:00 2001 From: Samuel Ryan Date: Wed, 20 Apr 2016 01:21:24 +0100 Subject: [PATCH] Removes bower dependency (#49) --- bower.json | 22 ---------------------- circle.yml | 3 +-- contents/style.scss | 2 +- package.json | 4 ++-- 4 files changed, 4 insertions(+), 27 deletions(-) delete mode 100644 bower.json diff --git a/bower.json b/bower.json deleted file mode 100644 index 89beda6..0000000 --- a/bower.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "name": "httpstatuses", - "description": "An easy to reference directory of HTTP Status Codes", - "main": "build.js", - "authors": [ - "Samuel Ryan " - ], - "license": "MIT", - "homepage": "https://github.com/citricsquid/httpstatuses", - "moduleType": [], - "private": true, - "ignore": [ - "**/.*", - "node_modules", - "bower_components", - "test", - "tests" - ], - "dependencies": { - "Skeleton-Sass": "skeleton-scss#*" - } -} diff --git a/circle.yml b/circle.yml index a94195b..9fd9571 100644 --- a/circle.yml +++ b/circle.yml @@ -4,11 +4,10 @@ machine: dependencies: post: - - bower install - node build deployment: production: branch: master commands: - - ./deploy.sh \ No newline at end of file + - ./deploy.sh diff --git a/contents/style.scss b/contents/style.scss index ee0041a..54d55b5 100644 --- a/contents/style.scss +++ b/contents/style.scss @@ -1,6 +1,6 @@ $container-width: 528px; -@import "../bower_components/Skeleton-Sass/scss/skeleton.scss"; +@import "../node_modules/skeleton-scss/scss/skeleton.scss"; @font-face { font-family: 'Open Sans'; diff --git a/package.json b/package.json index 8db4e54..5d30ec0 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,6 @@ }, "homepage": "https://github.com/citricsquid/httpstatuses#readme", "dependencies": { - "bower": "^1.6.5", "jade": "^1.11.0", "lodash.groupby": "^3.1.1", "metalsmith": "^2.1.0", @@ -32,6 +31,7 @@ "metalsmith-layouts": "^1.4.2", "metalsmith-markdown": "^0.2.1", "metalsmith-sass": "^1.3.0", - "metalsmith-writemetadata": "^0.4.5" + "metalsmith-writemetadata": "^0.4.5", + "skeleton-scss": "^2.0.4" } }