From ff739595141d38cf9b3e419315671f4b1b786645 Mon Sep 17 00:00:00 2001 From: Bill Schaller Date: Tue, 26 May 2015 16:54:00 -0400 Subject: [PATCH 1/2] Don't ignore src, I need it to build with webpack. --- bower.json | 1 - 1 file changed, 1 deletion(-) diff --git a/bower.json b/bower.json index b278da13e..4eba49240 100644 --- a/bower.json +++ b/bower.json @@ -20,7 +20,6 @@ "CONTRIBUTING.md", "Gruntfile.js", "package.json", - "src/", "test/" ] } From 8d3da5c7b3abb18c733417c8747326ff887d9b25 Mon Sep 17 00:00:00 2001 From: Bill Schaller Date: Tue, 26 May 2015 16:56:48 -0400 Subject: [PATCH 2/2] Fix invalid require('./jquery-gridster.js') --- src/jquery.gridster.extras.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.gridster.extras.js b/src/jquery.gridster.extras.js index 5d4eecc6a..c99bbd01c 100644 --- a/src/jquery.gridster.extras.js +++ b/src/jquery.gridster.extras.js @@ -1,7 +1,7 @@ ;(function(root, factory) { 'use strict'; if(typeof exports === 'object') { - module.exports = factory(require('jquery'), require('./jquery-gridster.js')); + module.exports = factory(require('jquery'), require('./jquery.gridster.js')); } else if (typeof define === 'function' && define.amd) { define(['jquery', 'gridster'], factory);