mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
bfc8bdb9c8
Re-enables the Bazel integration test that we have disabled as part of the APF v13 changes. Since there are no UMD files anymore, the Karma tests no longer worked. Similarly, the Angular linker had to run for building the production bundle. PR Close #44061
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
/**
|
|
* @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
|
|
*/
|
|
|
|
// rxjs/operators
|
|
(function(factory) {
|
|
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
var v = factory(require, exports);
|
|
if (v !== undefined) module.exports = v;
|
|
} else if (typeof define === 'function' && define.amd) {
|
|
define('rxjs/operators', ['exports', 'rxjs'], factory);
|
|
}
|
|
})(function(exports, rxjs) {
|
|
'use strict';
|
|
Object.keys(rxjs.operators).forEach(function(key) { exports[key] = rxjs.operators[key]; });
|
|
Object.defineProperty(exports, '__esModule', {value: true});
|
|
});
|
|
|
|
// rxjs/testing
|
|
(function(factory) {
|
|
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
var v = factory(require, exports);
|
|
if (v !== undefined) module.exports = v;
|
|
} else if (typeof define === 'function' && define.amd) {
|
|
define('rxjs/testing', ['exports', 'rxjs'], factory);
|
|
}
|
|
})(function(exports, rxjs) {
|
|
'use strict';
|
|
Object.keys(rxjs.testing).forEach(function(key) { exports[key] = rxjs.testing[key]; });
|
|
Object.defineProperty(exports, '__esModule', {value: true});
|
|
});
|