[Build] Add additional run-time dependencies

This commit is contained in:
Victor Woeltjen 2016-01-28 11:12:18 -08:00
parent 452b05eb7b
commit cf15b6eed7
2 changed files with 8 additions and 2 deletions

View File

@ -12,6 +12,9 @@
"moment": "^2.11.1", "moment": "^2.11.1",
"moment-duration-format": "^1.3.0", "moment-duration-format": "^1.3.0",
"requirejs": "~2.1.22", "requirejs": "~2.1.22",
"text": "requirejs-text#^2.0.14" "text": "requirejs-text#^2.0.14",
"es6-promise": "^3.0.2",
"screenfull": "^3.0.0",
"node-uuid": "^1.4.7"
} }
} }

View File

@ -26,9 +26,12 @@ requirejs.config({
"legacyRegistry": "src/legacyRegistry", "legacyRegistry": "src/legacyRegistry",
"angular": "bower_components/angular/angular.min", "angular": "bower_components/angular/angular.min",
"angular-route": "bower_components/angular-route/angular-route.min", "angular-route": "bower_components/angular-route/angular-route.min",
"es6-promise": "bower_components/es6-promise/promise.min",
"moment": "bower_components/moment/moment", "moment": "bower_components/moment/moment",
"moment-duration-format": "bower_components/moment-duration-format/lib/moment-duration-format", "moment-duration-format": "bower_components/moment-duration-format/lib/moment-duration-format",
"text": "bower_components/text/text.js" "screenfull": "bower_components/screenfull/dist/screenfull.min",
"text": "bower_components/text/text.js",
"uuid": "bower_components/node-uuid/uuid"
}, },
"shim": { "shim": {
"angular": { "angular": {