forked from nishantmc/angular-zoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.umd.js
59 lines (58 loc) · 1.4 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
59
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 postcss from 'rollup-plugin-postcss';
var sass = require('node-sass');
export default {
entry: './src/lib/zoom.ts',
output: {
format: 'umd',
file:"dist/zoom.umd.js",
},
moduleName: 'zoom',
sourceMap:true,
external: [
'@angular/core',
'@angular/common'
],
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/**',
}),
postcss({
plugins: []
})
],
onwarn: warning => {
const skip_codes = [
'THIS_IS_UNDEFINED',
'MISSING_GLOBAL_NAME'
];
if (skip_codes.indexOf(warning.code) != -1) return;
console.error(warning);
}
};