forked from preactjs/preact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mangle.json
67 lines (67 loc) · 1.76 KB
/
mangle.json
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
{
"help": {
"what is this file?": "It controls protected/private property mangling so that minified builds have consistent property names.",
"why are there duplicate minified properties?": "Most properties are only used on one type of objects, so they can have the same name since they will never collide. Doing this reduces size."
},
"minify": {
"mangle": {
"properties": {
"regex": "^_",
"reserved": [
"__REACT_DEVTOOLS_GLOBAL_HOOK__",
"__PREACT_DEVTOOLS__",
"_renderers",
"__source",
"__self"
]
}
},
"compress": {
"hoist_vars": true,
"reduce_funcs": false
}
},
"props": {
"cname": 6,
"props": {
"$_afterPaintQueued": "__a",
"$__hooks": "__H",
"$_list": "__",
"$_pendingEffects": "__h",
"$_value": "__",
"$_args": "__H",
"$_factory": "__h",
"$_depth": "__b",
"$_nextDom": "__d",
"$_dirty": "__d",
"$_detachOnNextRender": "__b",
"$_force": "__e",
"$_nextState": "__s",
"$_renderCallbacks": "__h",
"$_vnode": "__v",
"$_children": "__k",
"$_pendingSuspensionCount": "__u",
"$_childDidSuspend": "__c",
"$_suspendedComponentWillUnmount": "__c",
"$_dom": "__e",
"$_component": "__c",
"$__html": "__html",
"$_parent": "__",
"$_pendingError": "__E",
"$_processingException": "__",
"$_context": "__n",
"$_defaultValue": "__",
"$_id": "__c",
"$_parentDom": "__P",
"$_prevState": "__u",
"$_root": "__",
"$_diff": "__b",
"$_commit": "__c",
"$_render": "__r",
"$_hook": "__h",
"$_catchError": "__e",
"$_unmount": "_e",
"$_owner": "__o"
}
}
}