As of Angular Package Format v10, we no longer ship a `fesm5` and `fesm5` output in packages. We made this change to the `ng_package` rule but intentionally did not clean up related build actions. This follow-up commit cleans this up by: * No longer building fesm5 bundles, or providing esm2015 output. * No longer requesting and building a third flavor for ESM5. We can use TSC to downlevel ES2015 sources/prodmode output similarly to how it is done in `ng-packagr`. The third output flavor (ESM5) resulted in a build slow-down as we required a full recompilation of sources. Now, we only have a single compilation for prodmode output, and then downlevel it on-demand to ES5 for the UMD bundles. Here is timing for building the release packages in `angular/angular` before this change, and afterwards: * Before: 462.157s = ~7.7min * After: 339.703s = ~5.6min This signifies a time reduction by 27% when running `./scripts/build/build-packages-dist.sh`. PR Close #37623
		
			
				
	
	
		
			1028 lines
		
	
	
		
			37 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			1028 lines
		
	
	
		
			37 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| README.md
 | |
| a11y
 | |
|   a11y/a11y.d.ts
 | |
|   a11y/a11y.metadata.json
 | |
|   a11y/package.json
 | |
| a11y.d.ts
 | |
| a11y.metadata.json
 | |
| arbitrary-npm-package-main.js
 | |
| arbitrary_bin.txt
 | |
| arbitrary_genfiles.txt
 | |
| bundles
 | |
|   bundles/waffels-a11y.umd.js
 | |
|   bundles/waffels-a11y.umd.js.map
 | |
|   bundles/waffels-a11y.umd.min.js
 | |
|   bundles/waffels-a11y.umd.min.js.map
 | |
|   bundles/waffels-imports.umd.js
 | |
|   bundles/waffels-imports.umd.js.map
 | |
|   bundles/waffels-imports.umd.min.js
 | |
|   bundles/waffels-imports.umd.min.js.map
 | |
|   bundles/waffels-secondary.umd.js
 | |
|   bundles/waffels-secondary.umd.js.map
 | |
|   bundles/waffels-secondary.umd.min.js
 | |
|   bundles/waffels-secondary.umd.min.js.map
 | |
|   bundles/waffels.umd.js
 | |
|   bundles/waffels.umd.js.map
 | |
|   bundles/waffels.umd.min.js
 | |
|   bundles/waffels.umd.min.js.map
 | |
| esm2015
 | |
|   esm2015/a11y
 | |
|     esm2015/a11y/a11y.externs.js
 | |
|     esm2015/a11y/a11y.js
 | |
|     esm2015/a11y/index.js
 | |
|     esm2015/a11y/public-api.js
 | |
|   esm2015/example.externs.js
 | |
|   esm2015/example.js
 | |
|   esm2015/imports
 | |
|     esm2015/imports/imports.externs.js
 | |
|     esm2015/imports/imports.js
 | |
|     esm2015/imports/index.js
 | |
|     esm2015/imports/public-api.js
 | |
|     esm2015/imports/second.js
 | |
|   esm2015/index.js
 | |
|   esm2015/mymodule.js
 | |
|   esm2015/secondary
 | |
|     esm2015/secondary/index.js
 | |
|     esm2015/secondary/secondary.externs.js
 | |
|     esm2015/secondary/secondary.js
 | |
|     esm2015/secondary/secondarymodule.js
 | |
| example.d.ts
 | |
| example.metadata.json
 | |
| extra-styles.css
 | |
| fesm2015
 | |
|   fesm2015/a11y.js
 | |
|   fesm2015/a11y.js.map
 | |
|   fesm2015/imports.js
 | |
|   fesm2015/imports.js.map
 | |
|   fesm2015/secondary.js
 | |
|   fesm2015/secondary.js.map
 | |
|   fesm2015/waffels.js
 | |
|   fesm2015/waffels.js.map
 | |
| imports
 | |
|   imports/imports.d.ts
 | |
|   imports/imports.metadata.json
 | |
|   imports/package.json
 | |
| imports.d.ts
 | |
| imports.metadata.json
 | |
| logo.png
 | |
| package.json
 | |
| secondary
 | |
|   secondary/package.json
 | |
|   secondary/secondary.d.ts
 | |
|   secondary/secondary.metadata.json
 | |
| secondary.d.ts
 | |
| secondary.metadata.json
 | |
| some-file.txt
 | |
| --- README.md ---
 | |
| 
 | |
| Angular
 | |
| =======
 | |
| 
 | |
| The sources for this package are in the main [Angular](https://github.com/angular/angular) repo. Please file issues and pull requests against that repo.
 | |
| 
 | |
| Usage information and reference details can be found in [Angular documentation](https://angular.io/docs).
 | |
| 
 | |
| License: MIT
 | |
| 
 | |
| 
 | |
| --- a11y/a11y.d.ts ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| 
 | |
| 
 | |
| export declare class A11yModule {
 | |
| }
 | |
| 
 | |
| export { }
 | |
| 
 | |
| 
 | |
| --- a11y/a11y.metadata.json ---
 | |
| 
 | |
| {"__symbolic":"module","version":4,"metadata":{"A11yModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":10,"character":1},"arguments":[{}]}],"members":{}}},"origins":{"A11yModule":"./a11y"},"importAs":"example/a11y"}
 | |
| 
 | |
| --- a11y/package.json ---
 | |
| 
 | |
| {
 | |
|   "name": "example/a11y",
 | |
|   "main": "../bundles/example-a11y.umd.js",
 | |
|   "fesm2015": "../fesm2015/a11y.js",
 | |
|   "esm2015": "../esm2015/a11y/a11y.js",
 | |
|   "typings": "./a11y.d.ts",
 | |
|   "module": "../fesm2015/a11y.js",
 | |
|   "es2015": "../fesm2015/a11y.js"
 | |
| }
 | |
| 
 | |
| --- a11y.d.ts ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| export * from './a11y/a11y';
 | |
| 
 | |
| 
 | |
| --- a11y.metadata.json ---
 | |
| 
 | |
| {"__symbolic":"module","version":3,"metadata":{},"exports":[{"from":"./a11y/a11y"}],"flatModuleIndexRedirect":true,"importAs":"example/a11y"}
 | |
| 
 | |
| 
 | |
| --- arbitrary-npm-package-main.js ---
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| 
 | |
| const x = 1;
 | |
| 
 | |
| 
 | |
| --- arbitrary_bin.txt ---
 | |
| 
 | |
| World
 | |
| 
 | |
| 
 | |
| --- arbitrary_genfiles.txt ---
 | |
| 
 | |
| Hello
 | |
| 
 | |
| 
 | |
| --- bundles/waffels-a11y.umd.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| (function (global, factory) {
 | |
|     typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core')) :
 | |
|     typeof define === 'function' && define.amd ? define('example/a11y', ['exports', '@angular/core'], factory) :
 | |
|     (global = global || self, factory((global.example = global.example || {}, global.example.a11y = {}), global.ng.core));
 | |
| }(this, (function (exports, core) { 'use strict';
 | |
| 
 | |
|     /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
|     var A11yModule = /** @class */ (function () {
 | |
|         function A11yModule() {
 | |
|         }
 | |
|         return A11yModule;
 | |
|     }());
 | |
|     A11yModule.decorators = [
 | |
|         { type: core.NgModule, args: [{},] }
 | |
|     ];
 | |
| 
 | |
|     /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
| 
 | |
|     /**
 | |
|      * Generated bundle index. Do not edit.
 | |
|      */
 | |
| 
 | |
|     exports.A11yModule = A11yModule;
 | |
| 
 | |
|     Object.defineProperty(exports, '__esModule', { value: true });
 | |
| 
 | |
| })));
 | |
| //# sourceMappingURL=waffels-a11y.umd.js.map
 | |
| 
 | |
| 
 | |
| --- bundles/waffels-a11y.umd.min.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| !function(e,o){"object"==typeof exports&&"undefined"!=typeof module?o(exports,require("@angular/core")):"function"==typeof define&&define.amd?define("example/a11y",["exports","@angular/core"],o):o(((e=e||self).example=e.example||{},e.example.a11y={}),e.ng.core)}(this,(function(e,o){"use strict";
 | |
| /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */var t;(t=function t(){}).decorators=[{type:o.NgModule,args:[{}]}],
 | |
| /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
| e.A11yModule=t,Object.defineProperty(e,"__esModule",{value:!0})}));
 | |
| 
 | |
| --- bundles/waffels-imports.umd.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| (function (global, factory) {
 | |
|     typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core')) :
 | |
|     typeof define === 'function' && define.amd ? define('example/imports', ['exports', '@angular/core'], factory) :
 | |
|     (global = global || self, factory((global.example = global.example || {}, global.example.imports = {}), global.ng.core));
 | |
| }(this, (function (exports, i0) { 'use strict';
 | |
| 
 | |
|     /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
|     var MySecondService = /** @class */ (function () {
 | |
|         function MySecondService() {
 | |
|         }
 | |
|         return MySecondService;
 | |
|     }());
 | |
|     MySecondService.ɵprov = i0.ɵɵdefineInjectable({ factory: function MySecondService_Factory() { return new MySecondService(); }, token: MySecondService, providedIn: "root" });
 | |
|     MySecondService.decorators = [
 | |
|         { type: i0.Injectable, args: [{ providedIn: 'root' },] }
 | |
|     ];
 | |
| 
 | |
|     /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
|     var MyService = /** @class */ (function () {
 | |
|         function MyService(secondService) {
 | |
|             this.secondService = secondService;
 | |
|         }
 | |
|         return MyService;
 | |
|     }());
 | |
|     MyService.ɵprov = i0.ɵɵdefineInjectable({ factory: function MyService_Factory() { return new MyService(i0.ɵɵinject(MySecondService)); }, token: MyService, providedIn: "root" });
 | |
|     MyService.decorators = [
 | |
|         { type: i0.Injectable, args: [{ providedIn: 'root' },] }
 | |
|     ];
 | |
|     MyService.ctorParameters = function () { return [
 | |
|         { type: MySecondService }
 | |
|     ]; };
 | |
| 
 | |
|     /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
| 
 | |
|     /**
 | |
|      * Generated bundle index. Do not edit.
 | |
|      */
 | |
| 
 | |
|     exports.MyService = MyService;
 | |
|     exports.ɵangular_packages_bazel_test_ng_package_example_imports_imports_a = MySecondService;
 | |
| 
 | |
|     Object.defineProperty(exports, '__esModule', { value: true });
 | |
| 
 | |
| })));
 | |
| //# sourceMappingURL=waffels-imports.umd.js.map
 | |
| 
 | |
| 
 | |
| --- bundles/waffels-imports.umd.min.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| !function(e,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports,require("@angular/core")):"function"==typeof define&&define.amd?define("example/imports",["exports","@angular/core"],t):t(((e=e||self).example=e.example||{},e.example.imports={}),e.ng.core)}(this,(function(e,t){"use strict";
 | |
| /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */var o,r;(o=function o(){}).ɵprov=t.ɵɵdefineInjectable({factory:function e(){return new o},token:o,providedIn:"root"}),o.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],(r=function r(e){this.secondService=e}).ɵprov=t.ɵɵdefineInjectable({factory:function e(){return new r(t.ɵɵinject(o))},token:r,providedIn:"root"}),r.decorators=[{type:t.Injectable,args:[{providedIn:"root"}]}],r.ctorParameters=function(){return[{type:o}]},
 | |
| /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
| e.MyService=r,e.ɵangular_packages_bazel_test_ng_package_example_imports_imports_a=o,Object.defineProperty(e,"__esModule",{value:!0})}));
 | |
| 
 | |
| --- bundles/waffels-secondary.umd.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| (function (global, factory) {
 | |
|     typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core')) :
 | |
|     typeof define === 'function' && define.amd ? define('example/secondary', ['exports', '@angular/core'], factory) :
 | |
|     (global = global || self, factory((global.example = global.example || {}, global.example.secondary = {}), global.ng.core));
 | |
| }(this, (function (exports, core) { 'use strict';
 | |
| 
 | |
|     /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
|     var SecondaryModule = /** @class */ (function () {
 | |
|         function SecondaryModule() {
 | |
|         }
 | |
|         return SecondaryModule;
 | |
|     }());
 | |
|     SecondaryModule.decorators = [
 | |
|         { type: core.NgModule, args: [{},] }
 | |
|     ];
 | |
|     var a = 1;
 | |
| 
 | |
|     /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
| 
 | |
|     /**
 | |
|      * Generated bundle index. Do not edit.
 | |
|      */
 | |
| 
 | |
|     exports.SecondaryModule = SecondaryModule;
 | |
|     exports.a = a;
 | |
| 
 | |
|     Object.defineProperty(exports, '__esModule', { value: true });
 | |
| 
 | |
| })));
 | |
| //# sourceMappingURL=waffels-secondary.umd.js.map
 | |
| 
 | |
| 
 | |
| --- bundles/waffels-secondary.umd.min.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| !function(e,o){"object"==typeof exports&&"undefined"!=typeof module?o(exports,require("@angular/core")):"function"==typeof define&&define.amd?define("example/secondary",["exports","@angular/core"],o):o(((e=e||self).example=e.example||{},e.example.secondary={}),e.ng.core)}(this,(function(e,o){"use strict";
 | |
| /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */var n;(n=function n(){}).decorators=[{type:o.NgModule,args:[{}]}],
 | |
| /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
| e.SecondaryModule=n,e.a=1,Object.defineProperty(e,"__esModule",{value:!0})}));
 | |
| 
 | |
| --- bundles/waffels.umd.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| (function (global, factory) {
 | |
|     typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core')) :
 | |
|     typeof define === 'function' && define.amd ? define('example', ['exports', '@angular/core'], factory) :
 | |
|     (global = global || self, factory(global.example = {}, global.ng.core));
 | |
| }(this, (function (exports, core) { 'use strict';
 | |
| 
 | |
|     /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
|     var MyModule = /** @class */ (function () {
 | |
|         function MyModule() {
 | |
|         }
 | |
|         return MyModule;
 | |
|     }());
 | |
|     MyModule.decorators = [
 | |
|         { type: core.NgModule, args: [{},] }
 | |
|     ];
 | |
| 
 | |
|     /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
| 
 | |
|     /**
 | |
|      * Generated bundle index. Do not edit.
 | |
|      */
 | |
| 
 | |
|     exports.MyModule = MyModule;
 | |
| 
 | |
|     Object.defineProperty(exports, '__esModule', { value: true });
 | |
| 
 | |
| })));
 | |
| //# sourceMappingURL=waffels.umd.js.map
 | |
| 
 | |
| 
 | |
| --- bundles/waffels.umd.min.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| !function(e,o){"object"==typeof exports&&"undefined"!=typeof module?o(exports,require("@angular/core")):"function"==typeof define&&define.amd?define("example",["exports","@angular/core"],o):o((e=e||self).example={},e.ng.core)}(this,(function(e,o){"use strict";
 | |
| /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */var t;(t=function t(){}).decorators=[{type:o.NgModule,args:[{}]}],
 | |
| /**
 | |
|      * @license
 | |
|      * Copyright Google LLC 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
 | |
|      */
 | |
| e.MyModule=t,Object.defineProperty(e,"__esModule",{value:!0})}));
 | |
| 
 | |
| --- esm2015/a11y/a11y.externs.js ---
 | |
| 
 | |
| /** @externs */
 | |
| /**
 | |
|  * @externs
 | |
|  * @suppress {duplicate,checkTypes}
 | |
|  */
 | |
| // NOTE: generated by tsickle, do not edit.
 | |
| 
 | |
| 
 | |
| --- esm2015/a11y/a11y.js ---
 | |
| 
 | |
| /**
 | |
|  * Generated bundle index. Do not edit.
 | |
|  */
 | |
| export * from './index';
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYTExeS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2JhemVsL3Rlc3QvbmdfcGFja2FnZS9leGFtcGxlL2ExMXkvYTExeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
 | |
| 
 | |
| --- esm2015/a11y/index.js ---
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| export * from './public-api';
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9iYXplbC90ZXN0L25nX3BhY2thZ2UvZXhhbXBsZS9hMTF5L2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7R0FNRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IEdvb2dsZSBMTEMgQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbiAqXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxuICogZm91bmQgaW4gdGhlIExJQ0VOU0UgZmlsZSBhdCBodHRwczovL2FuZ3VsYXIuaW8vbGljZW5zZVxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
 | |
| 
 | |
| --- esm2015/a11y/public-api.js ---
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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 { NgModule } from '@angular/core';
 | |
| export class A11yModule {
 | |
| }
 | |
| A11yModule.decorators = [
 | |
|     { type: NgModule, args: [{},] }
 | |
| ];
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2JhemVsL3Rlc3QvbmdfcGFja2FnZS9leGFtcGxlL2ExMXkvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSCxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBR3ZDLE1BQU0sT0FBTyxVQUFVOzs7WUFEdEIsUUFBUSxTQUFDLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxuICpcbiAqIFVzZSBvZiB0aGlzIHNvdXJjZSBjb2RlIGlzIGdvdmVybmVkIGJ5IGFuIE1JVC1zdHlsZSBsaWNlbnNlIHRoYXQgY2FuIGJlXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXG4gKi9cblxuaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBOZ01vZHVsZSh7fSlcbmV4cG9ydCBjbGFzcyBBMTF5TW9kdWxlIHtcbn1cbiJdfQ==
 | |
| 
 | |
| --- esm2015/example.externs.js ---
 | |
| 
 | |
| /** @externs */
 | |
| /**
 | |
|  * @externs
 | |
|  * @suppress {duplicate,checkTypes}
 | |
|  */
 | |
| // NOTE: generated by tsickle, do not edit.
 | |
| 
 | |
| 
 | |
| --- esm2015/example.js ---
 | |
| 
 | |
| /**
 | |
|  * Generated bundle index. Do not edit.
 | |
|  */
 | |
| export * from './index';
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXhhbXBsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2JhemVsL3Rlc3QvbmdfcGFja2FnZS9leGFtcGxlL2V4YW1wbGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLFNBQVMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9pbmRleCc7XG4iXX0=
 | |
| 
 | |
| --- esm2015/imports/imports.externs.js ---
 | |
| 
 | |
| /** @externs */
 | |
| /**
 | |
|  * @externs
 | |
|  * @suppress {duplicate,checkTypes}
 | |
|  */
 | |
| // NOTE: generated by tsickle, do not edit.
 | |
| 
 | |
| 
 | |
| --- esm2015/imports/imports.js ---
 | |
| 
 | |
| /**
 | |
|  * Generated bundle index. Do not edit.
 | |
|  */
 | |
| export * from './index';
 | |
| export { MySecondService as ɵangular_packages_bazel_test_ng_package_example_imports_imports_a } from './second';
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW1wb3J0cy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2JhemVsL3Rlc3QvbmdfcGFja2FnZS9leGFtcGxlL2ltcG9ydHMvaW1wb3J0cy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDO0FBRXhCLE9BQU8sRUFBQyxlQUFlLElBQUksaUVBQWlFLEVBQUMsTUFBTSxVQUFVLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuXG5leHBvcnQge015U2Vjb25kU2VydmljZSBhcyDJtWFuZ3VsYXJfcGFja2FnZXNfYmF6ZWxfdGVzdF9uZ19wYWNrYWdlX2V4YW1wbGVfaW1wb3J0c19pbXBvcnRzX2F9IGZyb20gJy4vc2Vjb25kJzsiXX0=
 | |
| 
 | |
| --- esm2015/imports/index.js ---
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| export * from './public-api';
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9iYXplbC90ZXN0L25nX3BhY2thZ2UvZXhhbXBsZS9pbXBvcnRzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7R0FNRztBQUVILGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IEdvb2dsZSBMTEMgQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbiAqXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxuICogZm91bmQgaW4gdGhlIExJQ0VOU0UgZmlsZSBhdCBodHRwczovL2FuZ3VsYXIuaW8vbGljZW5zZVxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
 | |
| 
 | |
| --- esm2015/imports/public-api.js ---
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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 { Injectable } from '@angular/core';
 | |
| import { MySecondService } from './second';
 | |
| import * as i0 from "@angular/core";
 | |
| import * as i1 from "./second";
 | |
| export class MyService {
 | |
|     constructor(secondService) {
 | |
|         this.secondService = secondService;
 | |
|     }
 | |
| }
 | |
| MyService.ɵprov = i0.ɵɵdefineInjectable({ factory: function MyService_Factory() { return new MyService(i0.ɵɵinject(i1.MySecondService)); }, token: MyService, providedIn: "root" });
 | |
| MyService.decorators = [
 | |
|     { type: Injectable, args: [{ providedIn: 'root' },] }
 | |
| ];
 | |
| MyService.ctorParameters = () => [
 | |
|     { type: MySecondService }
 | |
| ];
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2JhemVsL3Rlc3QvbmdfcGFja2FnZS9leGFtcGxlL2ltcG9ydHMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSCxPQUFPLEVBQUMsVUFBVSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBQyxlQUFlLEVBQUMsTUFBTSxVQUFVLENBQUM7OztBQUd6QyxNQUFNLE9BQU8sU0FBUztJQUNwQixZQUFtQixhQUE4QjtRQUE5QixrQkFBYSxHQUFiLGFBQWEsQ0FBaUI7SUFBRyxDQUFDOzs7O1lBRnRELFVBQVUsU0FBQyxFQUFDLFVBQVUsRUFBRSxNQUFNLEVBQUM7OztZQUZ4QixlQUFlIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IEdvb2dsZSBMTEMgQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbiAqXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxuICogZm91bmQgaW4gdGhlIExJQ0VOU0UgZmlsZSBhdCBodHRwczovL2FuZ3VsYXIuaW8vbGljZW5zZVxuICovXG5cbmltcG9ydCB7SW5qZWN0YWJsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge015U2Vjb25kU2VydmljZX0gZnJvbSAnLi9zZWNvbmQnO1xuXG5ASW5qZWN0YWJsZSh7cHJvdmlkZWRJbjogJ3Jvb3QnfSlcbmV4cG9ydCBjbGFzcyBNeVNlcnZpY2Uge1xuICBjb25zdHJ1Y3RvcihwdWJsaWMgc2Vjb25kU2VydmljZTogTXlTZWNvbmRTZXJ2aWNlKSB7fVxufVxuIl19
 | |
| 
 | |
| --- esm2015/imports/second.js ---
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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 { Injectable } from '@angular/core';
 | |
| import * as i0 from "@angular/core";
 | |
| export class MySecondService {
 | |
| }
 | |
| MySecondService.ɵprov = i0.ɵɵdefineInjectable({ factory: function MySecondService_Factory() { return new MySecondService(); }, token: MySecondService, providedIn: "root" });
 | |
| MySecondService.decorators = [
 | |
|     { type: Injectable, args: [{ providedIn: 'root' },] }
 | |
| ];
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2Vjb25kLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvYmF6ZWwvdGVzdC9uZ19wYWNrYWdlL2V4YW1wbGUvaW1wb3J0cy9zZWNvbmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7OztHQU1HO0FBRUgsT0FBTyxFQUFDLFVBQVUsRUFBQyxNQUFNLGVBQWUsQ0FBQzs7QUFHekMsTUFBTSxPQUFPLGVBQWU7Ozs7WUFEM0IsVUFBVSxTQUFDLEVBQUMsVUFBVSxFQUFFLE1BQU0sRUFBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCBHb29nbGUgTExDIEFsbCBSaWdodHMgUmVzZXJ2ZWQuXG4gKlxuICogVXNlIG9mIHRoaXMgc291cmNlIGNvZGUgaXMgZ292ZXJuZWQgYnkgYW4gTUlULXN0eWxlIGxpY2Vuc2UgdGhhdCBjYW4gYmVcbiAqIGZvdW5kIGluIHRoZSBMSUNFTlNFIGZpbGUgYXQgaHR0cHM6Ly9hbmd1bGFyLmlvL2xpY2Vuc2VcbiAqL1xuXG5pbXBvcnQge0luamVjdGFibGV9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ASW5qZWN0YWJsZSh7cHJvdmlkZWRJbjogJ3Jvb3QnfSlcbmV4cG9ydCBjbGFzcyBNeVNlY29uZFNlcnZpY2Uge1xufVxuIl19
 | |
| 
 | |
| --- esm2015/index.js ---
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| export * from './mymodule';
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9iYXplbC90ZXN0L25nX3BhY2thZ2UvZXhhbXBsZS9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSCxjQUFjLFlBQVksQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCBHb29nbGUgTExDIEFsbCBSaWdodHMgUmVzZXJ2ZWQuXG4gKlxuICogVXNlIG9mIHRoaXMgc291cmNlIGNvZGUgaXMgZ292ZXJuZWQgYnkgYW4gTUlULXN0eWxlIGxpY2Vuc2UgdGhhdCBjYW4gYmVcbiAqIGZvdW5kIGluIHRoZSBMSUNFTlNFIGZpbGUgYXQgaHR0cHM6Ly9hbmd1bGFyLmlvL2xpY2Vuc2VcbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL215bW9kdWxlJztcbiJdfQ==
 | |
| 
 | |
| --- esm2015/mymodule.js ---
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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 { NgModule } from '@angular/core';
 | |
| export class MyModule {
 | |
| }
 | |
| MyModule.decorators = [
 | |
|     { type: NgModule, args: [{},] }
 | |
| ];
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibXltb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9iYXplbC90ZXN0L25nX3BhY2thZ2UvZXhhbXBsZS9teW1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSCxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBSXZDLE1BQU0sT0FBTyxRQUFROzs7WUFEcEIsUUFBUSxTQUFDLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxuICpcbiAqIFVzZSBvZiB0aGlzIHNvdXJjZSBjb2RlIGlzIGdvdmVybmVkIGJ5IGFuIE1JVC1zdHlsZSBsaWNlbnNlIHRoYXQgY2FuIGJlXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXG4gKi9cblxuaW1wb3J0IHtOZ01vZHVsZX0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQge2F9IGZyb20gJy4vc2Vjb25kYXJ5L3NlY29uZGFyeW1vZHVsZSc7XG5cbkBOZ01vZHVsZSh7fSlcbmV4cG9ydCBjbGFzcyBNeU1vZHVsZSB7XG59XG4iXX0=
 | |
| 
 | |
| --- esm2015/secondary/index.js ---
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| export * from './secondarymodule';
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9wYWNrYWdlcy9iYXplbC90ZXN0L25nX3BhY2thZ2UvZXhhbXBsZS9zZWNvbmRhcnkvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7OztHQU1HO0FBRUgsY0FBYyxtQkFBbUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCBHb29nbGUgTExDIEFsbCBSaWdodHMgUmVzZXJ2ZWQuXG4gKlxuICogVXNlIG9mIHRoaXMgc291cmNlIGNvZGUgaXMgZ292ZXJuZWQgYnkgYW4gTUlULXN0eWxlIGxpY2Vuc2UgdGhhdCBjYW4gYmVcbiAqIGZvdW5kIGluIHRoZSBMSUNFTlNFIGZpbGUgYXQgaHR0cHM6Ly9hbmd1bGFyLmlvL2xpY2Vuc2VcbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL3NlY29uZGFyeW1vZHVsZSc7XG4iXX0=
 | |
| 
 | |
| --- esm2015/secondary/secondary.externs.js ---
 | |
| 
 | |
| /** @externs */
 | |
| /**
 | |
|  * @externs
 | |
|  * @suppress {duplicate,checkTypes}
 | |
|  */
 | |
| // NOTE: generated by tsickle, do not edit.
 | |
| 
 | |
| 
 | |
| --- esm2015/secondary/secondary.js ---
 | |
| 
 | |
| /**
 | |
|  * Generated bundle index. Do not edit.
 | |
|  */
 | |
| export * from './index';
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2Vjb25kYXJ5LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvYmF6ZWwvdGVzdC9uZ19wYWNrYWdlL2V4YW1wbGUvc2Vjb25kYXJ5L3NlY29uZGFyeS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7R0FFRztBQUVILGNBQWMsU0FBUyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBHZW5lcmF0ZWQgYnVuZGxlIGluZGV4LiBEbyBub3QgZWRpdC5cbiAqL1xuXG5leHBvcnQgKiBmcm9tICcuL2luZGV4JztcbiJdfQ==
 | |
| 
 | |
| --- esm2015/secondary/secondarymodule.js ---
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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 { NgModule } from '@angular/core';
 | |
| export class SecondaryModule {
 | |
| }
 | |
| SecondaryModule.decorators = [
 | |
|     { type: NgModule, args: [{},] }
 | |
| ];
 | |
| export const a = 1;
 | |
| //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic2Vjb25kYXJ5bW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvYmF6ZWwvdGVzdC9uZ19wYWNrYWdlL2V4YW1wbGUvc2Vjb25kYXJ5L3NlY29uZGFyeW1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQTs7Ozs7O0dBTUc7QUFFSCxPQUFPLEVBQUMsUUFBUSxFQUFDLE1BQU0sZUFBZSxDQUFDO0FBR3ZDLE1BQU0sT0FBTyxlQUFlOzs7WUFEM0IsUUFBUSxTQUFDLEVBQUU7O0FBSVosTUFBTSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogQGxpY2Vuc2VcbiAqIENvcHlyaWdodCBHb29nbGUgTExDIEFsbCBSaWdodHMgUmVzZXJ2ZWQuXG4gKlxuICogVXNlIG9mIHRoaXMgc291cmNlIGNvZGUgaXMgZ292ZXJuZWQgYnkgYW4gTUlULXN0eWxlIGxpY2Vuc2UgdGhhdCBjYW4gYmVcbiAqIGZvdW5kIGluIHRoZSBMSUNFTlNFIGZpbGUgYXQgaHR0cHM6Ly9hbmd1bGFyLmlvL2xpY2Vuc2VcbiAqL1xuXG5pbXBvcnQge05nTW9kdWxlfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQE5nTW9kdWxlKHt9KVxuZXhwb3J0IGNsYXNzIFNlY29uZGFyeU1vZHVsZSB7XG59XG5cbmV4cG9ydCBjb25zdCBhID0gMTtcbiJdfQ==
 | |
| 
 | |
| --- example.d.ts ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| 
 | |
| 
 | |
| export declare class MyModule {
 | |
| }
 | |
| 
 | |
| export { }
 | |
| 
 | |
| 
 | |
| --- example.metadata.json ---
 | |
| 
 | |
| {"__symbolic":"module","version":4,"metadata":{"MyModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":11,"character":1},"arguments":[{}]}],"members":{}}},"origins":{"MyModule":"./example"},"importAs":"example"}
 | |
| 
 | |
| --- extra-styles.css ---
 | |
| 
 | |
| .special {
 | |
|   color: goldenrod;
 | |
| }
 | |
| 
 | |
| 
 | |
| --- fesm2015/a11y.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| import { NgModule } from '@angular/core';
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| class A11yModule {
 | |
| }
 | |
| A11yModule.decorators = [
 | |
|     { type: NgModule, args: [{},] }
 | |
| ];
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * Generated bundle index. Do not edit.
 | |
|  */
 | |
| 
 | |
| export { A11yModule };
 | |
| //# sourceMappingURL=a11y.js.map
 | |
| 
 | |
| 
 | |
| --- fesm2015/imports.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| import { ɵɵdefineInjectable, Injectable, ɵɵinject } from '@angular/core';
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| class MySecondService {
 | |
| }
 | |
| MySecondService.ɵprov = ɵɵdefineInjectable({ factory: function MySecondService_Factory() { return new MySecondService(); }, token: MySecondService, providedIn: "root" });
 | |
| MySecondService.decorators = [
 | |
|     { type: Injectable, args: [{ providedIn: 'root' },] }
 | |
| ];
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| class MyService {
 | |
|     constructor(secondService) {
 | |
|         this.secondService = secondService;
 | |
|     }
 | |
| }
 | |
| MyService.ɵprov = ɵɵdefineInjectable({ factory: function MyService_Factory() { return new MyService(ɵɵinject(MySecondService)); }, token: MyService, providedIn: "root" });
 | |
| MyService.decorators = [
 | |
|     { type: Injectable, args: [{ providedIn: 'root' },] }
 | |
| ];
 | |
| MyService.ctorParameters = () => [
 | |
|     { type: MySecondService }
 | |
| ];
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * Generated bundle index. Do not edit.
 | |
|  */
 | |
| 
 | |
| export { MyService, MySecondService as ɵangular_packages_bazel_test_ng_package_example_imports_imports_a };
 | |
| //# sourceMappingURL=imports.js.map
 | |
| 
 | |
| 
 | |
| --- fesm2015/secondary.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| import { NgModule } from '@angular/core';
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| class SecondaryModule {
 | |
| }
 | |
| SecondaryModule.decorators = [
 | |
|     { type: NgModule, args: [{},] }
 | |
| ];
 | |
| const a = 1;
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * Generated bundle index. Do not edit.
 | |
|  */
 | |
| 
 | |
| export { SecondaryModule, a };
 | |
| //# sourceMappingURL=secondary.js.map
 | |
| 
 | |
| 
 | |
| --- fesm2015/waffels.js ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| import { NgModule } from '@angular/core';
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| class MyModule {
 | |
| }
 | |
| MyModule.decorators = [
 | |
|     { type: NgModule, args: [{},] }
 | |
| ];
 | |
| 
 | |
| /**
 | |
|  * @license
 | |
|  * Copyright Google LLC 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
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * Generated bundle index. Do not edit.
 | |
|  */
 | |
| 
 | |
| export { MyModule };
 | |
| //# sourceMappingURL=waffels.js.map
 | |
| 
 | |
| 
 | |
| --- imports/imports.d.ts ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| 
 | |
| export declare class MyService {
 | |
|     secondService: ɵangular_packages_bazel_test_ng_package_example_imports_imports_a;
 | |
|     constructor(secondService: ɵangular_packages_bazel_test_ng_package_example_imports_imports_a);
 | |
| }
 | |
| 
 | |
| 
 | |
| export declare class ɵangular_packages_bazel_test_ng_package_example_imports_imports_a {
 | |
| }
 | |
| 
 | |
| export { }
 | |
| 
 | |
| 
 | |
| --- imports/imports.metadata.json ---
 | |
| 
 | |
| {"__symbolic":"module","version":4,"metadata":{"MyService":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":11,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","name":"ɵangular_packages_bazel_test_ng_package_example_imports_imports_a"}]}]},"statics":{"ɵprov":{}}},"ɵangular_packages_bazel_test_ng_package_example_imports_imports_a":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Injectable","line":10,"character":1},"arguments":[{"providedIn":"root"}]}],"members":{},"statics":{"ɵprov":{}}}},"origins":{"MyService":"./imports","ɵangular_packages_bazel_test_ng_package_example_imports_imports_a":"./imports"},"importAs":"example/imports"}
 | |
| 
 | |
| --- imports/package.json ---
 | |
| 
 | |
| {
 | |
|   "name": "example/imports",
 | |
|   "main": "../bundles/example-imports.umd.js",
 | |
|   "fesm2015": "../fesm2015/imports.js",
 | |
|   "esm2015": "../esm2015/imports/imports.js",
 | |
|   "typings": "./imports.d.ts",
 | |
|   "module": "../fesm2015/imports.js",
 | |
|   "es2015": "../fesm2015/imports.js"
 | |
| }
 | |
| 
 | |
| --- imports.d.ts ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| export * from './imports/imports';
 | |
| 
 | |
| 
 | |
| --- imports.metadata.json ---
 | |
| 
 | |
| {"__symbolic":"module","version":3,"metadata":{},"exports":[{"from":"./imports/imports"}],"flatModuleIndexRedirect":true,"importAs":"example/imports"}
 | |
| 
 | |
| 
 | |
| --- logo.png ---
 | |
| 
 | |
| 9db278d630f5fabd8e7ba16c2e329a3a
 | |
| 
 | |
| --- package.json ---
 | |
| 
 | |
| {
 | |
|   "name": "example",
 | |
|   "version": "0.0.0",
 | |
|   "main": "./bundles/example.umd.js",
 | |
|   "fesm2015": "./fesm2015/example.js",
 | |
|   "esm2015": "./esm2015/example.js",
 | |
|   "typings": "./example.d.ts",
 | |
|   "module": "./fesm2015/example.js",
 | |
|   "es2015": "./fesm2015/example.js"
 | |
| }
 | |
| 
 | |
| --- secondary/package.json ---
 | |
| 
 | |
| {
 | |
|   "name": "example/secondary",
 | |
|   "main": "../bundles/example-secondary.umd.js",
 | |
|   "fesm2015": "../fesm2015/secondary.js",
 | |
|   "esm2015": "../esm2015/secondary/secondary.js",
 | |
|   "typings": "./secondary.d.ts",
 | |
|   "module": "../fesm2015/secondary.js",
 | |
|   "es2015": "../fesm2015/secondary.js"
 | |
| }
 | |
| 
 | |
| --- secondary/secondary.d.ts ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| 
 | |
| export declare const a = 1;
 | |
| 
 | |
| 
 | |
| export declare class SecondaryModule {
 | |
| }
 | |
| 
 | |
| export { }
 | |
| 
 | |
| 
 | |
| --- secondary/secondary.metadata.json ---
 | |
| 
 | |
| {"__symbolic":"module","version":4,"metadata":{"SecondaryModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":10,"character":1},"arguments":[{}]}],"members":{}},"a":1},"origins":{"SecondaryModule":"./secondary","a":"./secondary"},"importAs":"example/secondary"}
 | |
| 
 | |
| --- secondary.d.ts ---
 | |
| 
 | |
| /**
 | |
|  * @license Angular v0.0.0
 | |
|  * (c) 2010-2020 Google LLC. https://angular.io/
 | |
|  * License: MIT
 | |
|  */
 | |
| 
 | |
| export * from './secondary/secondary';
 | |
| 
 | |
| 
 | |
| --- secondary.metadata.json ---
 | |
| 
 | |
| {"__symbolic":"module","version":3,"metadata":{},"exports":[{"from":"./secondary/secondary"}],"flatModuleIndexRedirect":true,"importAs":"example/secondary"}
 | |
| 
 | |
| 
 | |
| --- some-file.txt ---
 | |
| 
 | |
| This file is just copied into the package.
 | |
| 
 |