-
Notifications
You must be signed in to change notification settings - Fork 0
/
migrations.js
60 lines (60 loc) · 1.49 KB
/
migrations.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
/**
* @type {MigrationList}
*/
module.exports = {
"scripts": [
{
name: "context-onhandler-to-events",
filePath: require.resolve("./scripts/context-onhandler-to-events.js")
},
{
name: "remove-ChangedPayload",
filePath: require.resolve("./scripts/remove-ChangedPayload.js")
},
{
name: "store-get-state-return-object-to-flat",
filePath: require.resolve("./scripts/store-get-state-return-object-to-flat"),
},
{
name: "store-group-arguments",
filePath: require.resolve("./scripts/store-group-arguments"),
},
{
name: "executor-to-execute",
filePath: require.resolve("./scripts/babel-codemod/executor-to-execute.js"),
type: "babel-codemod"
}
],
"versions": [
{
"version": "0.13.0",
"scripts": [
"context-onhandler-to-events"
]
},
{
"version": "0.14.0",
"scripts": []
},
{
"version": "0.15.0",
"scripts": [
"remove-ChangedPayload"
]
},
{
"version": "0.16.0",
"scripts": []
},
{
"version": "0.17.0",
"scripts": []
},
{
"version": "0.18.0",
"scripts": [
"executor-to-execute"
]
}
]
};