travis & bower stuff

This commit is contained in:
Matthias Kretschmann 2015-09-12 23:26:54 +02:00
parent 26b12f12d3
commit 1cd84b19a2
4 changed files with 34 additions and 9 deletions

10
.travis.yml Normal file
View File

@ -0,0 +1,10 @@
sudo: false
language: node
cache:
directories:
- node_modules
before_script:
- npm install gulp -g
- npm install
script:
- gulp build

View File

@ -1,8 +1,9 @@
# App Store Badges
> Pure CSS/SVG based App Store badges
> CSS/SVG based App Store badges
[Demo](http://lab.kremalicious.com/appstorebadges/) | Blog post | [Codepen](http://codepen.io/kremalicious/details/EVVraP/)
Demo | Blog post | [Codepen](http://codepen.io/kremalicious/details/EVVraP/)
## Usage
@ -24,13 +25,14 @@ Or just link to the css file:
<link rel="stylesheet" href="appstorebadges.min.css">
```
## Development
First you need:
- node & npm
And install dependencies:
Install dependencies:
```bash
npm install
@ -42,11 +44,8 @@ Then spin up livereloading dev server under http://localhost:1337
gulp
```
Or only compile new dist files:
Or only compile new dist files with `gulp build`.
```bash
gulp build
```
# The MIT License (MIT)

16
bower.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "appstorebadges",
"version": "1.0.0",
"homepage": "https://github.com/kremalicious/appstorebadges",
"authors": [
"Matthias Kretschmann <m@kretschmann.io>"
],
"description": "CSS/SVG based App Store badges",
"main": "dist/appstorebadges.min.css",
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components"
]
}

View File

@ -5,10 +5,10 @@
"name": "Matthias Kretschmann",
"email": "m@kretschmann.io"
},
"description": "Pure CSS/SVG based App Store badges",
"description": "CSS/SVG based App Store badges",
"homepage": "https://kremalicious.com",
"license": "MIT",
"main": "gulpfile.js",
"main": "dist/appstorebadges.min.css",
"dependencies": {
"assemble": "assemble/assemble#v0.6.0"
},