-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
71 lines (69 loc) · 1.96 KB
/
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
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
60
61
62
63
64
65
66
67
68
69
70
71
// 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';
// var sass = require('node-sass');
// import { nameLibrary, PATH_SRC, PATH_DIST } from './config-library.js';
// export default {
// input: PATH_SRC+nameLibrary+'.ts',
// output: {
// name: nameLibrary,
// format: 'umd',
// file: PATH_DIST+nameLibrary+".umd.js",
// sourcemap: true
// },
// external: [
// '@angular/core',
// ],
// 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);
// }
// };
export default {
input: 'dist/lib/index.js',
output:{
file: 'dist/bundles/ngx-recursive-dropdown.umd.js',
name: 'ng.NgxRecursiveDropdown',
globals: {
'@angular/core': 'ng.core',
'@angular/common': 'ng.common',
'@angular/forms': 'ng.forms',
},
format: 'umd',
}
}
// output.format = "es";
// output.file = PATH_DIST+nameLibrary+".esm.js"