-
Notifications
You must be signed in to change notification settings - Fork 0
/
migrations.json
84 lines (84 loc) · 2.88 KB
/
migrations.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
{
"migrations": [
{
"version": "13.0.0-beta.1",
"description": "Add default base to nx.json if its not currently set",
"factory": "./src/migrations/update-13-0-0/set-default-base-if-not-set",
"cli": "nx",
"package": "@nrwl/workspace",
"name": "set-default-base-if-not-set"
},
{
"version": "13.0.0-beta.4",
"description": "Move global settings into nx.json, and project specific settings into workspace.json",
"cli": "nx",
"implementation": "./src/migrations/update-13-0-0/config-locations/config-locations",
"package": "@nrwl/workspace",
"name": "13-0-0-config-locations"
},
{
"cli": "nx",
"version": "13.0.0-beta.0",
"description": "Update tsconfig.json to use `jsxImportSource` to support css prop",
"factory": "./src/migrations/update-13-0-0/update-emotion-setup",
"package": "@nrwl/next",
"name": "update-emotion-setup-13.0.0"
},
{
"cli": "nx",
"version": "13.0.0-beta.1",
"description": "Set `webpack5: true` for all next.js projects.",
"factory": "./src/migrations/update-13-0-0/update-to-webpack-5",
"package": "@nrwl/next",
"name": "update-to-webpack-5"
},
{
"cli": "nx",
"version": "13.0.3-beta.1",
"description": "Fix setup for less stylesheets",
"factory": "./src/migrations/update-13-0-3/fix-less",
"package": "@nrwl/next",
"name": "fix-less"
},
{
"cli": "nx",
"version": "13.1.1-beta.1",
"description": "Enables SWC for Next.js apps.",
"factory": "./src/migrations/update-13-1-1/enable-swc",
"package": "@nrwl/next",
"name": "enable-swc"
},
{
"cli": "nx",
"version": "13.0.0-beta.0",
"description": "Update tsconfig.json to use `jsxImportSource` to support css prop",
"factory": "./src/migrations/update-13-0-0/update-emotion-setup",
"package": "@nrwl/react",
"name": "update-emotion-setup-13.0.0"
},
{
"cli": "nx",
"version": "13.0.0-beta.0",
"description": "Migrate Storybook to use webpack 5",
"factory": "./src/migrations/update-13-0-0/migrate-storybook-to-webpack-5",
"package": "@nrwl/react",
"name": "migrate-storybook-to-webpack-5-13.0.0"
},
{
"cli": "nx",
"version": "13.0.0-beta.1",
"description": "Removes deprecated node-sass package (sass is already a dependency of @nrwl/web).",
"factory": "./src/migrations/update-13-0-0/remove-node-sass-13-0-0",
"package": "@nrwl/web",
"name": "remove-node-sass-13-0-0"
},
{
"cli": "nx",
"version": "13.0.0-beta.1",
"description": "Remove packages installed by Nx 12's `@nrwl/web:webpack5` generator.",
"factory": "./src/migrations/update-13-0-0/remove-webpack-5-packages-13-0-0",
"package": "@nrwl/web",
"name": "remove-webpack-5-packages"
}
]
}