@unisphere/nx 1.22.9 → 1.23.1
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/1-22-4/summary.d.ts.map +1 -1
- package/dist/migrations/1-22-4/summary.js +4 -3
- package/dist/migrations/1-23-0/delete-rollup-patch.d.ts +3 -0
- package/dist/migrations/1-23-0/delete-rollup-patch.d.ts.map +1 -0
- package/dist/migrations/1-23-0/delete-rollup-patch.js +14 -0
- package/migrations.json +6 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"summary.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-4/summary.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"summary.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-4/summary.ts"],"names":[],"mappings":"AAIA,0CAUC"}
|
|
@@ -3,13 +3,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.default = default_1;
|
|
4
4
|
const devkit_1 = require("@nx/devkit");
|
|
5
5
|
const open_1 = require("../utils/open");
|
|
6
|
+
const url = 'https://unisphere.kaltura.com/docs/create/changelog/v1-x-major-release';
|
|
6
7
|
async function default_1() {
|
|
7
8
|
devkit_1.logger.info('');
|
|
8
|
-
devkit_1.logger.info('🎉 Migration to
|
|
9
|
+
devkit_1.logger.info('🎉 Migration to Major 1 finished successfully!');
|
|
9
10
|
devkit_1.logger.info('');
|
|
10
11
|
devkit_1.logger.info('📋 Full details:');
|
|
11
|
-
devkit_1.logger.info(
|
|
12
|
+
devkit_1.logger.info(url);
|
|
12
13
|
devkit_1.logger.info('');
|
|
13
|
-
(0, open_1.openBrowser)(
|
|
14
|
+
(0, open_1.openBrowser)(url);
|
|
14
15
|
devkit_1.logger.info('Opening changelog in browser...');
|
|
15
16
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delete-rollup-patch.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-23-0/delete-rollup-patch.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAElC,wBAA8B,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAS9D"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = update;
|
|
4
|
+
async function update(tree) {
|
|
5
|
+
// Delete rollup patch file
|
|
6
|
+
const rollupPatchPath = 'patches/@nx+rollup+22.1.3.patch';
|
|
7
|
+
if (tree.exists(rollupPatchPath)) {
|
|
8
|
+
console.log(`Deleting rollup patch file: ${rollupPatchPath}`);
|
|
9
|
+
tree.delete(rollupPatchPath);
|
|
10
|
+
}
|
|
11
|
+
else {
|
|
12
|
+
throw new Error(`Rollup patch file not found at ${rollupPatchPath}`);
|
|
13
|
+
}
|
|
14
|
+
}
|
package/migrations.json
CHANGED
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"description": "Adds kaltura-tools to preinstall script",
|
|
59
59
|
"factory": "./dist/migrations/1-22-4/add-kaltura-tools-to-pre-install.js"
|
|
60
60
|
},
|
|
61
|
-
"
|
|
61
|
+
"1-22-4-summary": {
|
|
62
62
|
"version": "1.22.4",
|
|
63
63
|
"description": "Migration completion summary for 1.22.4",
|
|
64
64
|
"factory": "./dist/migrations/1-22-4/summary.js"
|
|
@@ -80,6 +80,11 @@
|
|
|
80
80
|
"version": "1.22.9",
|
|
81
81
|
"description": "Fix prerelease deploy logic in GitHub workflow",
|
|
82
82
|
"factory": "./dist/migrations/1-22-9/fix-prerelease-deploy.js"
|
|
83
|
+
},
|
|
84
|
+
"1-23-0-delete-rollup-patch": {
|
|
85
|
+
"version": "1.23.0",
|
|
86
|
+
"description": "Delete rollup patch file",
|
|
87
|
+
"factory": "./dist/migrations/1-23-0/delete-rollup-patch.js"
|
|
83
88
|
}
|
|
84
89
|
},
|
|
85
90
|
"packageJsonUpdates": {
|