forked from udos86/ng-dynamic-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
66 lines (60 loc) · 1.94 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
import nodeResolve from "rollup-plugin-node-resolve";
import commonjs from "rollup-plugin-commonjs";
//import uglify from "rollup-plugin-uglify"
export default {
entry: "./example/app/main.aot.js",
dest: "./example/dist/bundle.aot.js",
format: "iife",
sourceMap: false,
sourceMapFile: "./example/dist/bundle.aot.js.map",
onwarn: function (warning) {
// https://github.com/rollup/rollup/wiki/Troubleshooting#this-is-undefined
if (warning.code === "THIS_IS_UNDEFINED" || warning.code === "MISSING_EXPORT") {
return;
}
console.error(warning);
},
plugins: [
nodeResolve(
{
jsnext: true,
module: true
}
),
commonjs(
{
include: [
"node_modules/primeng/**/*",
"node_modules/rxjs/**"
],
namedExports: {
"node_modules/primeng/primeng.js": [
"AutoComplete",
"AutoCompleteModule",
"Calendar",
"CalendarModule",
"Checkbox",
"CheckboxModule",
"Chips",
"ChipsModule",
"Dropdown",
"DropdownModule",
"Editor",
"EditorModule",
"InputSwitch",
"InputSwitchModule",
"InputTextModule",
"InputTextareaModule",
"MultiSelect",
"MultiSelectModule",
"RadioButtonModule",
"Slider",
"SliderModule",
"SpinnerModule"
]
}
}
),
//uglify()
]
}