Skip to content

Commit 6f08668

Browse files
committed
browserify modules are always in lowercase
1 parent fb8fc84 commit 6f08668

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

dist/schema-form.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
(function(root, factory) {
22
if (typeof define === 'function' && define.amd) {
3-
define(['angular', 'ObjectPath', 'tv4'], factory);
3+
define(['angular', 'objectpath', 'tv4'], factory);
44
} else if (typeof exports === 'object') {
5-
module.exports = factory(require('angular'), require('ObjectPath'), require('tv4'));
5+
module.exports = factory(require('angular'), require('objectpath'), require('tv4'));
66
} else {
7-
root.schemaForm = factory(root.angular, root.ObjectPath, root.tv4);
7+
root.schemaForm = factory(root.angular, root.objectpath, root.tv4);
88
}
9-
}(this, function(angular, ObjectPath, tv4) {
9+
}(this, function(angular, objectpath, tv4) {
1010
// Deps is sort of a problem for us, maybe in the future we will ask the user to depend
1111
// on modules for add-ons
1212

0 commit comments

Comments
 (0)