forked from lfarran/ngx-soundmanager2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.umd.js
55 lines (55 loc) · 1.33 KB
/
rollup.config.umd.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import angular from 'rollup-plugin-angular';
import typescript from 'rollup-plugin-typescript';
import {
nameLibrary,
PATH_SRC,
PATH_DIST
} from './config-library.js';
export default {
input: PATH_SRC + nameLibrary + '.ts',
output: {
file: PATH_DIST + nameLibrary + ".umd.js",
format: 'umd',
name: nameLibrary,
globals: {
'soundManager': 'soundmanager2',
'@angular/core': '@angular/core'
},
sourcemap:true
},
external: [
'soundmanager2',
'@angular/core'
],
plugins: [
angular(
{
preprocessors: {
template: template => template
}
}
),
typescript({
typescript:require('typescript')
}),
resolve({
module: true,
main: true
}),
commonjs({
include: 'node_modules/**',
})
],
/*onwarn: warning => {
const skip_codes = [
'THIS_IS_UNDEFINED',
'MISSING_GLOBAL_NAME'
];
if (skip_codes.indexOf(warning.code) != -1) {
console.error('onwarn:', warning);
return;
}
}*/
};