forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
30 lines (27 loc) · 909 Bytes
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* @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/core': 'ng.core',
'@angular/common': 'ng.common',
'@angular/platform-browser': 'ng.platformBrowser',
'rxjs/Observable': 'Rx',
'rxjs/Subject': 'Rx'
};
module.exports = {
entry: '../../dist/packages-dist/platform-webworker/esm5/platform-webworker.js',
dest: '../../dist/packages-dist/platform-webworker/bundles/platform-webworker.umd.js',
format: 'umd',
exports: 'named',
amd: {id: '@angular/platform-webworker'},
moduleName: 'ng.platformWebworker',
plugins: [resolve(), sourcemaps()],
external: Object.keys(globals),
globals: globals
};