Skip to content

Commit 2d5182d

Browse files
authored
Fix linux builds
Require is case sensitive on most system. I think that been wrote by a mac user :D
1 parent 7327e74 commit 2d5182d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vuedraggable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
}
159159

160160
if (typeof exports == "object") {
161-
var Sortable = require("Sortablejs")
161+
var Sortable = require("sortablejs")
162162
module.exports = buildDraggable(Sortable)
163163
} else if (typeof define == "function" && define.amd) {
164164
define(['Sortable'], function(Sortable) { return buildDraggable(Sortable);});

0 commit comments

Comments
 (0)