Skip to content

Commit

Permalink
Adds bower for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Batdorf committed May 12, 2014
1 parent dbf9293 commit b88a525
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
@@ -1,4 +1,5 @@
.DS_Store
node_modules
src/vendor
src/index.html
src/index.html
.bowerrc
9 changes: 8 additions & 1 deletion Gruntfile.js
Expand Up @@ -19,7 +19,7 @@ module.exports = function (grunt) {
mangle: true,
compress: true,
sourceMap: false,
banner: "/*\n * Liquid Slider v2.2.0\n * Copyright 2012 Kevin Batdorf\n * http://liquidslider.com\n * MIT license\n */"
banner: "/*\n * Liquid Slider v2.3.0\n * Copyright 2012 Kevin Batdorf\n * http://liquidslider.com\n * MIT license\n */"
},
main: {
src: "src/js/jquery.liquid-slider.js",
Expand All @@ -33,6 +33,13 @@ module.exports = function (grunt) {
options: {
livereload: true
}
},
html: {
files: ["src/index.html"],
tasks: ["jshint", "uglify"],
options: {
livereload: true
}
}
}
});
Expand Down
3 changes: 3 additions & 0 deletions README.markdown
Expand Up @@ -140,6 +140,9 @@ swipeArgs: undefined
Versions
--------

Version 2.2.0
- Adds bower

Version 2.2.0
- Fixes hash linking (new approach)
- Uses API for cross links
Expand Down
31 changes: 31 additions & 0 deletions bower.json
@@ -0,0 +1,31 @@
{
"name": "liquidslider",
"version": "2.3.0",
"homepage": "http://liquidslider.com",
"authors": [
"Kevin Batdorf <kevin@kevinbatdorf.com>"
],
"description": "A Responsive Content Slider",
"main": "src/js/jquery.liquid-slider.js",
"keywords": [
"content",
"slider",
"tabs",
"mobile"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"src/vendor",
"test",
"tests"
],
"dependencies": {
"jquery": "~1",
"jquery-touchswipe": "~1.6.4",
"jquery-easing": "*"
},
"devDependencies": {}
}
2 changes: 1 addition & 1 deletion js/jquery.liquid-slider.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion liquidslider.jquery.json
Expand Up @@ -11,7 +11,7 @@
"mobile",
"tabs"
],
"version": "2.2.0",
"version": "2.3.0",
"author": {
"name": "Kevin Batdorf",
"url": "http://www.kevinbatdorf.com"
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "liquidslider",
"version": "2.1.1",
"version": "2.3.0",
"description": "A Responsive Content Slider",
"main": "index.js",
"directories": {
Expand Down

0 comments on commit b88a525

Please sign in to comment.