@unisphere/nx 1.21.0 → 1.21.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/migrations.json +14 -14
- package/migrations.json +14 -14
- package/package.json +1 -1
package/dist/migrations.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"generators": {
|
|
3
3
|
"check-nx-version": {
|
|
4
4
|
"version": "1.9.0",
|
|
5
5
|
"description": "Checks that Nx version is 22 or higher",
|
|
6
|
-
"
|
|
6
|
+
"factory": "./dist/migrations/update-1-1-5/check-nx-version.js",
|
|
7
7
|
"cli": {
|
|
8
|
-
"
|
|
8
|
+
"postUpdateMessage": "✅ Nx version check completed. Your project is using Nx 22 or higher."
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
11
|
"rename-widgetname-to-widgetname": {
|
|
12
12
|
"version": "1.9.0",
|
|
13
13
|
"description": "Changes the executor name from WidgetName to widgetName",
|
|
14
|
-
"
|
|
14
|
+
"factory": "./dist/migrations/update-1-1-5/rename-widgetname-to-widgetname.js"
|
|
15
15
|
},
|
|
16
16
|
"fix-playground-apps": {
|
|
17
17
|
"version": "1.9.0",
|
|
18
18
|
"description": "Fixes playground apps",
|
|
19
|
-
"
|
|
19
|
+
"factory": "./dist/migrations/update-1-1-5/fix-playground-apps.js"
|
|
20
20
|
},
|
|
21
21
|
"move-runtime-info-to-core": {
|
|
22
22
|
"version": "1.9.0",
|
|
23
23
|
"description": "Moves runtime-information.ts and runtime-settings.ts to core package",
|
|
24
|
-
"
|
|
24
|
+
"factory": "./dist/migrations/update-1-1-5/move-runtime-info-to-core.js"
|
|
25
25
|
},
|
|
26
26
|
"sync-package-json-files": {
|
|
27
27
|
"version": "1.9.0",
|
|
28
28
|
"description": "Syncs package json files",
|
|
29
|
-
"
|
|
29
|
+
"factory": "./dist/migrations/update-1-1-5/sync-package-json-files.js"
|
|
30
30
|
},
|
|
31
31
|
"update-nvmrc": {
|
|
32
32
|
"version": "1.9.0",
|
|
33
33
|
"description": "Updates .nvmrc to Node 24 (creates if missing)",
|
|
34
|
-
"
|
|
34
|
+
"factory": "./dist/migrations/update-1-1-5/update-nvmrc.js",
|
|
35
35
|
"cli": {
|
|
36
|
-
"
|
|
36
|
+
"postUpdateMessage": "✅ .nvmrc has been updated to Node 24. Please ensure you have Node.js 24.x installed."
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"fix-dependency-versions": {
|
|
40
40
|
"version": "1.9.0",
|
|
41
41
|
"description": "Removes ^ from @changesets/cli version in package.json",
|
|
42
|
-
"
|
|
42
|
+
"factory": "./dist/migrations/update-1-1-5/fix-dependency-versions.js",
|
|
43
43
|
"cli": {
|
|
44
|
-
"
|
|
44
|
+
"postUpdateMessage": "✅ @changesets/cli version has been pinned to exact version (^ removed)."
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"update-github-workflow": {
|
|
48
48
|
"version": "1.9.0",
|
|
49
49
|
"description": "Updates .github/workflows/cicd.yml from template",
|
|
50
|
-
"
|
|
50
|
+
"factory": "./dist/migrations/update-1-1-5/update-github-workflow.js",
|
|
51
51
|
"cli": {
|
|
52
|
-
"
|
|
52
|
+
"postUpdateMessage": "✅ GitHub workflow updated to use Node.js 24. Review .github/workflows/cicd.yml if you have custom changes."
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
},
|
|
@@ -163,4 +163,4 @@
|
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
165
|
}
|
|
166
|
-
}
|
|
166
|
+
}
|
package/migrations.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"generators": {
|
|
3
3
|
"check-nx-version": {
|
|
4
4
|
"version": "1.9.0",
|
|
5
5
|
"description": "Checks that Nx version is 22 or higher",
|
|
6
|
-
"
|
|
6
|
+
"factory": "./dist/migrations/update-1-1-5/check-nx-version.js",
|
|
7
7
|
"cli": {
|
|
8
|
-
"
|
|
8
|
+
"postUpdateMessage": "✅ Nx version check completed. Your project is using Nx 22 or higher."
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
11
|
"rename-widgetname-to-widgetname": {
|
|
12
12
|
"version": "1.9.0",
|
|
13
13
|
"description": "Changes the executor name from WidgetName to widgetName",
|
|
14
|
-
"
|
|
14
|
+
"factory": "./dist/migrations/update-1-1-5/rename-widgetname-to-widgetname.js"
|
|
15
15
|
},
|
|
16
16
|
"fix-playground-apps": {
|
|
17
17
|
"version": "1.9.0",
|
|
18
18
|
"description": "Fixes playground apps",
|
|
19
|
-
"
|
|
19
|
+
"factory": "./dist/migrations/update-1-1-5/fix-playground-apps.js"
|
|
20
20
|
},
|
|
21
21
|
"move-runtime-info-to-core": {
|
|
22
22
|
"version": "1.9.0",
|
|
23
23
|
"description": "Moves runtime-information.ts and runtime-settings.ts to core package",
|
|
24
|
-
"
|
|
24
|
+
"factory": "./dist/migrations/update-1-1-5/move-runtime-info-to-core.js"
|
|
25
25
|
},
|
|
26
26
|
"sync-package-json-files": {
|
|
27
27
|
"version": "1.9.0",
|
|
28
28
|
"description": "Syncs package json files",
|
|
29
|
-
"
|
|
29
|
+
"factory": "./dist/migrations/update-1-1-5/sync-package-json-files.js"
|
|
30
30
|
},
|
|
31
31
|
"update-nvmrc": {
|
|
32
32
|
"version": "1.9.0",
|
|
33
33
|
"description": "Updates .nvmrc to Node 24 (creates if missing)",
|
|
34
|
-
"
|
|
34
|
+
"factory": "./dist/migrations/update-1-1-5/update-nvmrc.js",
|
|
35
35
|
"cli": {
|
|
36
|
-
"
|
|
36
|
+
"postUpdateMessage": "✅ .nvmrc has been updated to Node 24. Please ensure you have Node.js 24.x installed."
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"fix-dependency-versions": {
|
|
40
40
|
"version": "1.9.0",
|
|
41
41
|
"description": "Removes ^ from @changesets/cli version in package.json",
|
|
42
|
-
"
|
|
42
|
+
"factory": "./dist/migrations/update-1-1-5/fix-dependency-versions.js",
|
|
43
43
|
"cli": {
|
|
44
|
-
"
|
|
44
|
+
"postUpdateMessage": "✅ @changesets/cli version has been pinned to exact version (^ removed)."
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"update-github-workflow": {
|
|
48
48
|
"version": "1.9.0",
|
|
49
49
|
"description": "Updates .github/workflows/cicd.yml from template",
|
|
50
|
-
"
|
|
50
|
+
"factory": "./dist/migrations/update-1-1-5/update-github-workflow.js",
|
|
51
51
|
"cli": {
|
|
52
|
-
"
|
|
52
|
+
"postUpdateMessage": "✅ GitHub workflow updated to use Node.js 24. Review .github/workflows/cicd.yml if you have custom changes."
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
55
|
},
|
|
@@ -163,4 +163,4 @@
|
|
|
163
163
|
}
|
|
164
164
|
}
|
|
165
165
|
}
|
|
166
|
-
}
|
|
166
|
+
}
|