mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
| ;(function (global) {
 | |
|   var map = {
 | |
|     'app': 'app/angular',
 | |
|     'angular-pipes': 'app/node_modules/angular-pipes',
 | |
|     'angular-rxjs.bundle': 'app/bundles/angular-rxjs.bundle.js'
 | |
|   }
 | |
| 
 | |
|   var packages = {
 | |
|     'app': { main: 'main.js', defaultExtension: 'js' },
 | |
|     'rxjs': { defaultExtension: 'js' }
 | |
|   }
 | |
|   var packageNames = [
 | |
|     '@angular/common',
 | |
|     '@angular/compiler',
 | |
|     '@angular/core',
 | |
|     '@angular/http',
 | |
|     '@angular/platform-browser',
 | |
|     '@angular/platform-browser-dynamic',
 | |
|     '@angular/router-deprecated',
 | |
|     'angular-pipes'
 | |
|   ]
 | |
| 
 | |
|   packageNames.forEach(function (pkgName) {
 | |
|     packages[pkgName] = { main: 'index.js', defaultExtension: 'js' }
 | |
|   })
 | |
| 
 | |
|   var config = {
 | |
|     map: map,
 | |
|     packages: packages,
 | |
|     bundles: {
 | |
|       'angular-rxjs.bundle': [
 | |
|         'rxjs',
 | |
|         '@angular/common/index.js',
 | |
|         '@angular/compiler/index.js',
 | |
|         '@angular/core/index.js',
 | |
|         '@angular/http/index.js',
 | |
|         '@angular/platform-browser/index.js',
 | |
|         '@angular/platform-browser-dynamic/index.js',
 | |
|         '@angular/router-deprecated/index.js'
 | |
|       ]
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   // filterSystemConfig - index.html's chance to modify config before we register it.
 | |
|   if (global.filterSystemConfig) global.filterSystemConfig(config)
 | |
|   System.config(config)
 | |
| })(this)
 |