Removes bower dependency (#49)

This commit is contained in:
Samuel Ryan 2016-04-20 01:21:24 +01:00
parent 7f4c0c8e41
commit 940cfac548
4 changed files with 4 additions and 27 deletions

View File

@ -1,22 +0,0 @@
{
"name": "httpstatuses",
"description": "An easy to reference directory of HTTP Status Codes",
"main": "build.js",
"authors": [
"Samuel Ryan <sam@samryan.co.uk>"
],
"license": "MIT",
"homepage": "https://github.com/citricsquid/httpstatuses",
"moduleType": [],
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"Skeleton-Sass": "skeleton-scss#*"
}
}

View File

@ -4,11 +4,10 @@ machine:
dependencies: dependencies:
post: post:
- bower install
- node build - node build
deployment: deployment:
production: production:
branch: master branch: master
commands: commands:
- ./deploy.sh - ./deploy.sh

View File

@ -1,6 +1,6 @@
$container-width: 528px; $container-width: 528px;
@import "../bower_components/Skeleton-Sass/scss/skeleton.scss"; @import "../node_modules/skeleton-scss/scss/skeleton.scss";
@font-face { @font-face {
font-family: 'Open Sans'; font-family: 'Open Sans';

View File

@ -18,7 +18,6 @@
}, },
"homepage": "https://github.com/citricsquid/httpstatuses#readme", "homepage": "https://github.com/citricsquid/httpstatuses#readme",
"dependencies": { "dependencies": {
"bower": "^1.6.5",
"jade": "^1.11.0", "jade": "^1.11.0",
"lodash.groupby": "^3.1.1", "lodash.groupby": "^3.1.1",
"metalsmith": "^2.1.0", "metalsmith": "^2.1.0",
@ -32,6 +31,7 @@
"metalsmith-layouts": "^1.4.2", "metalsmith-layouts": "^1.4.2",
"metalsmith-markdown": "^0.2.1", "metalsmith-markdown": "^0.2.1",
"metalsmith-sass": "^1.3.0", "metalsmith-sass": "^1.3.0",
"metalsmith-writemetadata": "^0.4.5" "metalsmith-writemetadata": "^0.4.5",
"skeleton-scss": "^2.0.4"
} }
} }