diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-05-27 16:23:10 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-05-27 16:23:10 +0200 |
commit | 41a2aee38cf812510010da09de9bae53590ec119 (patch) | |
tree | 79d55d6ae0ef6f66ccb88890cf1ef1946dc65fb4 /client/systemjs.config.js | |
parent | 157cb9c9713e08ff70078660a32dd77ecb87eabc (diff) | |
download | PeerTube-41a2aee38cf812510010da09de9bae53590ec119.tar.gz PeerTube-41a2aee38cf812510010da09de9bae53590ec119.tar.zst PeerTube-41a2aee38cf812510010da09de9bae53590ec119.zip |
Follow the angular styleguide for the directories structure
Diffstat (limited to 'client/systemjs.config.js')
-rw-r--r-- | client/systemjs.config.js | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/client/systemjs.config.js b/client/systemjs.config.js index 82ca5bb70..d04bc4107 100644 --- a/client/systemjs.config.js +++ b/client/systemjs.config.js | |||
@@ -1,13 +1,12 @@ | |||
1 | ;(function (global) { | 1 | ;(function (global) { |
2 | var map = { | 2 | var map = { |
3 | 'app': 'app/angular', | 3 | 'angular-pipes': 'client/node_modules/angular-pipes', |
4 | 'angular-pipes': 'app/node_modules/angular-pipes', | 4 | 'ng2-bootstrap': 'client/node_modules/ng2-bootstrap', |
5 | 'ng2-bootstrap': 'app/node_modules/ng2-bootstrap', | 5 | 'angular-rxjs.bundle': 'client/bundles/angular-rxjs.bundle.js' |
6 | 'angular-rxjs.bundle': 'app/bundles/angular-rxjs.bundle.js' | ||
7 | } | 6 | } |
8 | 7 | ||
9 | var packages = { | 8 | var packages = { |
10 | 'app': { main: 'main.js', defaultExtension: 'js' }, | 9 | 'client': { main: 'main.js', defaultExtension: 'js' }, |
11 | 'ng2-bootstrap': { defaultExtension: 'js' }, | 10 | 'ng2-bootstrap': { defaultExtension: 'js' }, |
12 | 'rxjs': { defaultExtension: 'js' } | 11 | 'rxjs': { defaultExtension: 'js' } |
13 | } | 12 | } |