]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/vendor.ts
Client: upgrade angular dep'
[github/Chocobozzz/PeerTube.git] / client / src / vendor.ts
CommitLineData
4a6995be
C
1// For vendors for example jQuery, Lodash, angular2-jwt just import them here unless you plan on
2// chunking vendors files for async loading. You would need to import the async loaded vendors
3// at the entry point of the async loaded file. Also see custom-typings.d.ts as you also need to
4// run `typings install x` where `x` is your module
5
6// Angular 2
7import '@angular/platform-browser';
8import '@angular/platform-browser-dynamic';
9import '@angular/core';
10import '@angular/common';
0f6da32b 11import '@angular/forms';
4a6995be 12import '@angular/http';
00a44645 13import '@angular/router';
4a6995be 14
ab32b0fc
C
15import '@angularclass/hmr';
16
4a6995be 17// RxJS
5555f886
C
18import 'rxjs/Observable';
19import 'rxjs/Subject';
4dc54772 20import 'rxjs/ReplaySubject';
5555f886 21import 'rxjs/add/operator/catch';
ab32b0fc 22import 'rxjs/add/operator/mergeMap';
4a6995be 23import 'rxjs/add/operator/map';
528a9efa 24import 'rxjs/add/observable/throw';
4a6995be 25
4a6995be 26import 'bootstrap-loader';
4dc54772
C
27
28import 'angular-pipes/src/math/bytes.pipe';
e822fdae 29import 'ng2-file-upload';
4dc54772
C
30import 'video.js';
31import 'ng2-meta';
d396a937
C
32import 'ng2-bootstrap/pagination';
33import 'ng2-bootstrap/dropdown';
34import 'ng2-bootstrap/progressbar';
35import 'ng2-bootstrap/modal';