43 lines
1.4 KiB
JavaScript
43 lines
1.4 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
|
|
*/
|
|
|
|
const resolve = require('rollup-plugin-node-resolve');
|
|
const sourcemaps = require('rollup-plugin-sourcemaps');
|
|
|
|
const globals = {
|
|
'@angular/animations': 'ng.animations',
|
|
'@angular/animations/browser': 'ng.animations.browser',
|
|
'@angular/core': 'ng.core',
|
|
'@angular/common': 'ng.common',
|
|
'@angular/common/http': 'ng.common.http',
|
|
'@angular/compiler': 'ng.compiler',
|
|
'@angular/http': 'ng.http',
|
|
'@angular/platform-browser': 'ng.platformBrowser',
|
|
'@angular/platform-browser/animations': 'ng.platformBrowser.animations',
|
|
'@angular/platform-browser-dynamic': 'ng.platformBrowserDynamic',
|
|
'rxjs/Observable': 'Rx',
|
|
'rxjs/Observer': 'Rx',
|
|
'rxjs/Subject': 'Rx',
|
|
'rxjs/Subscription': 'Rx',
|
|
'rxjs/operator/toPromise': 'Rx.Observable.prototype',
|
|
'rxjs/operator/filter': 'Rx.Observable.prototype',
|
|
'rxjs/operator/first': 'Rx.Observable.prototype'
|
|
};
|
|
|
|
module.exports = {
|
|
entry: '../../dist/packages-dist/platform-server/esm5/platform-server.js',
|
|
dest: '../../dist/packages-dist/platform-server/bundles/platform-server.umd.js',
|
|
format: 'umd',
|
|
exports: 'named',
|
|
amd: {id: '@angular/platform-server'},
|
|
moduleName: 'ng.platformServer',
|
|
plugins: [resolve(), sourcemaps()],
|
|
external: Object.keys(globals),
|
|
globals: globals
|
|
};
|