Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Leigh Johnson committed Aug 18, 2016
1 parent a4185e9 commit c7972cc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 17 deletions.
5 changes: 3 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,15 @@
"jquery": "*",
"jqueryui": "*",
"less": "*",
"angular-mocks": "~1.2.13"
"angular-mocks": "~1.2.13",
},
"dependencies": {
"angular": "~1.4.7",
"rrule": "~2.1.0",
"timezone-js": "~0.4.13",
"angular-tz-extensions": "https://github.com/chouseknecht/angular-tz-extensions/archive/0.3.10.tar.gz",
"lodash": "*"
"lodash": "*",
"moment": "^2.10.2"
},
"homepage": "https://github.com/chouseknecht/angular-scheduler",
"main": "[email protected]:chouseknecht/angular-scheduler.git",
Expand Down
4 changes: 2 additions & 2 deletions lib/angular-scheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define(['lodash', 'angular', 'jquery', 'jquery-ui'], factory);
define(['lodash', 'angular', 'jquery', 'jquery-ui', 'moment'], factory);
} else if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// like Node.
module.exports = factory(require('lodash'), require('angular'), require('jquery'), require('jquery-ui'));
module.exports = factory(require('lodash'), require('angular'), require('jquery'), require('jquery-ui'), require('moment'));
} else {
// Browser globals (root is window)
root.returnExports = factory(root._, root.angular, root.$, root.$.ui, root.moment);
Expand Down
Loading

0 comments on commit c7972cc

Please sign in to comment.