Skip to content

Commit

Permalink
fix flickity dependency paths; tick version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
desandro committed Feb 3, 2015
1 parent 10dc6b7 commit bc8b7e9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flickity-sync",
"version": "0.1.0",
"version": "0.1.1",
"description": "Enable sync for Flickity",
"main": "flickity-sync.js",
"dependencies": {
Expand Down
6 changes: 3 additions & 3 deletions flickity-sync.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Flickity sync v0.1.0
* Flickity sync v0.1.1
* enable sync for Flickity
*/

Expand All @@ -13,7 +13,7 @@
if ( typeof define == 'function' && define.amd ) {
// AMD
define( [
'./flickity',
'flickity/js/flickity',
'fizzy-ui-utils/utils'
], function( Flickity, utils ) {
return factory( window, Flickity, utils );
Expand All @@ -22,7 +22,7 @@
// CommonJS
module.exports = factory(
window,
require('/.flickity'),
require('flickity'),
require('fizzy-ui-utils')
);
} else {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flickity-sync",
"version": "0.1.0",
"version": "0.1.1",
"description": "Enable sync for Flickity",
"main": "flickity-sync.js",
"dependencies": {
Expand Down

0 comments on commit bc8b7e9

Please sign in to comment.