-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.umd.js
58 lines (58 loc) · 1.51 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
56
57
58
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import angular from 'rollup-plugin-angular';
import typescript from 'rollup-plugin-typescript2';
var sass = require('node-sass');
import {
nameLibrary,
PATH_SRC,
PATH_DIST
} from './config-library.js';
export default {
entry: PATH_SRC + nameLibrary + '.ts',
format: 'umd',
moduleName: nameLibrary,
sourceMap: true,
external: [
'@angular/core',
'@angular/common',
'twilio-video'
],
dest: PATH_DIST + nameLibrary + ".umd.js",
plugins: [
angular({
preprocessors: {
template: template => template,
style: scss => {
let css;
if (scss) {
css = sass.renderSync({
data: scss
}).css.toString();
} else {
css = '';
}
return css;
},
}
}),
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) return;
console.error(warning);
}
};