diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e73f323 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +sudo: false +language: node +cache: + directories: + - node_modules +before_script: + - npm install gulp -g + - npm install +script: + - gulp build diff --git a/README.md b/README.md index 38d1320..2971538 100644 --- a/README.md +++ b/README.md @@ -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: ``` + ## 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) diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..ef5f42b --- /dev/null +++ b/bower.json @@ -0,0 +1,16 @@ +{ + "name": "appstorebadges", + "version": "1.0.0", + "homepage": "https://github.com/kremalicious/appstorebadges", + "authors": [ + "Matthias Kretschmann " + ], + "description": "CSS/SVG based App Store badges", + "main": "dist/appstorebadges.min.css", + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components" + ] +} diff --git a/package.json b/package.json index 2a055bb..7689025 100644 --- a/package.json +++ b/package.json @@ -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" },