Skip to content

Commit

Permalink
Adds bower
Browse files Browse the repository at this point in the history
  • Loading branch information
jensljungblad committed Jan 5, 2015
1 parent e3b5bdc commit ead1f56
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "micro-modal",
"main": [
"micro-modal.css",
"micro-modal.js"
],
"version": "1.0.0",
"homepage": "https://github.com/jensljungblad/micro-modal",
"authors": [
"Jens Ljungblad <[email protected]>"
],
"description": "A lightweight, mobile first, responsive modal",
"keywords": [
"modal"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ var coffee = require('gulp-coffee');
var sass = require('gulp-sass');

gulp.task('javascripts', function() {
gulp.src('./micro-modal.coffee')
gulp.src('./source/micro-modal.coffee')
.pipe(coffee())
.pipe(gulp.dest('./'));
});

gulp.task('stylesheets', function() {
gulp.src('./micro-modal.scss')
gulp.src('./source/micro-modal.scss')
.pipe(sass())
.pipe(gulp.dest('./'));
});
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit ead1f56

Please sign in to comment.