| 
									
										
										
										
											2017-02-23 22:53:17 -08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import commonjs from 'rollup-plugin-commonjs'; | 
					
						
							|  |  |  | import * as path from 'path'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var m = /^\@angular\/((\w|\-)+)(\/(\w|\d|\/|\-)+)?$/; | 
					
						
							| 
									
										
										
										
											2017-03-06 16:51:03 -08:00
										 |  |  | var location = normalize('../../dist/packages-dist') + '/'; | 
					
						
							|  |  |  | var rxjsLocation = normalize('../../node_modules/rxjs'); | 
					
						
							| 
									
										
										
										
											2017-06-19 11:12:48 -07:00
										 |  |  | var tslibLocation = normalize('../../node_modules/tslib'); | 
					
						
							| 
									
										
										
										
											2017-02-23 22:53:17 -08:00
										 |  |  | var esm = 'esm/'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var locations = { | 
					
						
							| 
									
										
										
										
											2017-07-16 10:47:46 -07:00
										 |  |  |   'tsc-wrapped': normalize('../../dist/packages-dist') + '/', | 
					
						
							| 
									
										
										
										
											2017-03-06 16:51:03 -08:00
										 |  |  |   'compiler-cli': normalize('../../dist/packages') + '/' | 
					
						
							| 
									
										
										
										
											2017-02-23 22:53:17 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var esm_suffixes = {}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function normalize(fileName) { | 
					
						
							|  |  |  |   return path.resolve(__dirname, fileName); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-03-07 11:04:30 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 22:53:17 -08:00
										 |  |  | function resolve(id, from) { | 
					
						
							|  |  |  |   // console.log('Resolve id:', id, 'from', from)
 | 
					
						
							|  |  |  |   if (id == '@angular/tsc-wrapped') { | 
					
						
							|  |  |  |     // Hack to restrict the import to not include the index of @angular/tsc-wrapped so we don't
 | 
					
						
							|  |  |  |     // rollup tsickle.
 | 
					
						
							|  |  |  |     return locations['tsc-wrapped'] + 'tsc-wrapped/src/collector.js'; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   var match = m.exec(id); | 
					
						
							|  |  |  |   if (match) { | 
					
						
							|  |  |  |     var packageName = match[1]; | 
					
						
							|  |  |  |     var esm_suffix = esm_suffixes[packageName] || ''; | 
					
						
							|  |  |  |     var loc = locations[packageName] || location; | 
					
						
							| 
									
										
										
										
											2017-03-07 11:04:30 -08:00
										 |  |  |     var r = loc !== location && (loc + esm_suffix + packageName + (match[3] || '/index') + '.js') || | 
					
						
							|  |  |  |         loc + packageName + '/@angular/' + packageName + '.es5.js'; | 
					
						
							| 
									
										
										
										
											2017-02-23 22:53:17 -08:00
										 |  |  |     // console.log('** ANGULAR MAPPED **: ', r);
 | 
					
						
							|  |  |  |     return r; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   if (id && id.startsWith('rxjs/')) { | 
					
						
							|  |  |  |     const resolved = `${rxjsLocation}${id.replace('rxjs', '')}.js`; | 
					
						
							|  |  |  |     return resolved; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2017-06-19 11:12:48 -07:00
										 |  |  |   if (id == 'tslib') { | 
					
						
							|  |  |  |     return tslibLocation + '/tslib.es6.js'; | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2017-02-23 22:53:17 -08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var banner = `
 | 
					
						
							| 
									
										
										
										
											2017-03-29 09:34:21 -07:00
										 |  |  | var $reflect = {defineMetadata: function() {}, getOwnMetadata: function(){}}; | 
					
						
							|  |  |  | ((typeof global !== 'undefined' && global)||{})['Reflect'] = $reflect; | 
					
						
							| 
									
										
										
										
											2017-02-23 22:53:17 -08:00
										 |  |  | var $deferred, $resolved, $provided; | 
					
						
							|  |  |  | function $getModule(name) { return $provided[name] || require(name); } | 
					
						
							|  |  |  | function define(modules, cb) { $deferred = { modules: modules, cb: cb }; } | 
					
						
							|  |  |  | module.exports = function(provided) { | 
					
						
							|  |  |  |   if ($resolved) return $resolved; | 
					
						
							|  |  |  |   var result = {}; | 
					
						
							| 
									
										
										
										
											2017-03-29 09:34:21 -07:00
										 |  |  |   $provided = Object.assign({'reflect-metadata': $reflect}, provided || {}, { exports: result }); | 
					
						
							| 
									
										
										
										
											2017-02-23 22:53:17 -08:00
										 |  |  |   $deferred.cb.apply(this, $deferred.modules.map($getModule)); | 
					
						
							|  |  |  |   $resolved = result; | 
					
						
							|  |  |  |   return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | `;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export default { | 
					
						
							| 
									
										
										
										
											2017-03-06 16:51:03 -08:00
										 |  |  |   entry: '../../dist/packages-dist/language-service/@angular/language-service.es5.js', | 
					
						
							|  |  |  |   dest: '../../dist/packages-dist/language-service/bundles/language-service.umd.js', | 
					
						
							| 
									
										
										
										
											2017-02-23 22:53:17 -08:00
										 |  |  |   format: 'amd', | 
					
						
							|  |  |  |   moduleName: 'ng.language_service', | 
					
						
							|  |  |  |   exports: 'named', | 
					
						
							|  |  |  |   external: [ | 
					
						
							|  |  |  |     'fs', | 
					
						
							|  |  |  |     'path', | 
					
						
							|  |  |  |     'typescript', | 
					
						
							|  |  |  |   ], | 
					
						
							|  |  |  |   globals: { | 
					
						
							|  |  |  |     'typescript': 'ts', | 
					
						
							|  |  |  |     'path': 'path', | 
					
						
							|  |  |  |     'fs': 'fs', | 
					
						
							|  |  |  |   }, | 
					
						
							|  |  |  |   banner: banner, | 
					
						
							|  |  |  |   plugins: [{resolveId: resolve}, commonjs()] | 
					
						
							|  |  |  | } |