-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.size-limit.json
94 lines (94 loc) · 1.93 KB
/
.size-limit.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[
{
"name": "index",
"path": "dist/index.mjs"
},
{
"name": "matchbox",
"path": "dist/index.mjs",
"import": "{ matchboxFactory }"
},
{
"name": "states",
"path": "dist/index.mjs",
"import": "{ defineStates }"
},
{
"name": "machine",
"path": "src/state-machine.ts",
"import": "{ createStateMachine }"
},
{
"name": "pure",
"path": "src/state-machine-pure.ts"
},
{
"name": "factory-machine",
"path": "src/factory-machine.ts",
"import": "{ createFactoryMachine }"
},
{
"name": "matchChange",
"path": "src/match-change.ts",
"import": "{ matchChange }"
},
{
"name": "promise-handle",
"path": "src/promise-handle.ts"
},
{
"name": "promise-machine",
"path": "src/promise-machine.ts",
"import": "{ createPromiseMachine }"
},
{
"name": "ext",
"path": "src/ext/index.ts",
"import": "*"
},
{
"name": "setup",
"path": "src/ext/setup.ts",
"import": "*"
},
{
"name": "method enhancer",
"path": "src/ext/index.ts",
"import": "{ methodEnhancer }"
},
{
"name": "machine hooks",
"path": "src/state-machine-hooks.ts",
"import": "{notify}"
},
{
"name": "factory machine hooks",
"path": "src/factory-machine-hooks.ts",
"import": "{ whenEvent, onLeftState }"
},
{
"name": "factory-machine-lifecycle",
"path": "src/factory-machine-lifecycle.ts",
"import": "{ onLifecycle}"
},
{
"name": "state-machine-transition-helpers",
"path": "src/state-machine-transition-helpers.ts"
},
{
"name": "react-dist",
"path": "src/integrations/react.ts",
"import": "{ useMachine }",
"ignore": ["react"]
},
{
"name": "nanosubscribe",
"path": "src/extras/nanosubscriber.ts",
"import": "{ nanosubscriber }"
},
{
"name": "with-nanosubscribe",
"path": "src/extras/with-nanosubscribe.ts",
"import": "{ withNanoSubscribe }"
}
]