@unisphere/nx 1.22.0 → 1.22.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/1-22-0/check-nx-version.js +1 -1
- package/dist/migrations/{1-22-0 → 1-22-1}/fix-dependency-versions.d.ts.map +1 -1
- package/dist/migrations/1-22-1/sync-package-json-files.d.ts +3 -0
- package/dist/migrations/1-22-1/sync-package-json-files.d.ts.map +1 -0
- package/dist/migrations/1-22-1/sync-package-json-files.js +78 -0
- package/dist/migrations/1-22-2/add-kaltura-tools-to-pre-install.d.ts +3 -0
- package/dist/migrations/1-22-2/add-kaltura-tools-to-pre-install.d.ts.map +1 -0
- package/dist/migrations/1-22-2/add-kaltura-tools-to-pre-install.js +22 -0
- package/dist/migrations/{1-22-0/update-github-workflow.d.ts → 1-22-2/add-os-and-cpu.d.ts} +1 -1
- package/dist/migrations/1-22-2/add-os-and-cpu.d.ts.map +1 -0
- package/dist/migrations/1-22-2/add-os-and-cpu.js +26 -0
- package/dist/migrations/1-22-2/replace-github-workflow.d.ts +3 -0
- package/dist/migrations/1-22-2/replace-github-workflow.d.ts.map +1 -0
- package/dist/migrations/1-22-2/summary.d.ts.map +1 -0
- package/dist/migrations/{1-22-0 → 1-22-2}/summary.js +2 -2
- package/dist/migrations/{1-22-0 → 1-22-2}/templates/_publish-artifacts.template +56 -8
- package/dist/migrations/{1-22-0 → 1-22-2}/templates/cicd.template +14 -14
- package/migrations.json +38 -20
- package/package.json +1 -6
- package/dist/migrations/1-22-0/summary.d.ts.map +0 -1
- package/dist/migrations/1-22-0/update-github-workflow.d.ts.map +0 -1
- package/dist/migrations.json +0 -87
- /package/dist/migrations/{1-22-0 → 1-22-1}/fix-dependency-versions.d.ts +0 -0
- /package/dist/migrations/{1-22-0 → 1-22-1}/fix-dependency-versions.js +0 -0
- /package/dist/migrations/{1-22-0/update-github-workflow.js → 1-22-2/replace-github-workflow.js} +0 -0
- /package/dist/migrations/{1-22-0 → 1-22-2}/summary.d.ts +0 -0
|
@@ -12,7 +12,7 @@ function checkNxVersion(tree) {
|
|
|
12
12
|
}
|
|
13
13
|
const majorVersion = parseInt(nxVersion.match(/\d+/)?.[0] ?? '0');
|
|
14
14
|
if (majorVersion < 22) {
|
|
15
|
-
const errorMessage = `❌ This migration requires Nx 22 or higher.
|
|
15
|
+
const errorMessage = `❌ This migration requires Nx 22 or higher. read https://unisphere.kaltura.com/docs/create/changelog/1-22-2-changelog`;
|
|
16
16
|
devkit_1.logger.error(errorMessage);
|
|
17
17
|
throw new Error(errorMessage);
|
|
18
18
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fix-dependency-versions.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-
|
|
1
|
+
{"version":3,"file":"fix-dependency-versions.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-1/fix-dependency-versions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAuB,MAAM,YAAY,CAAC;AAEvD,wBAA8B,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CA8E9D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sync-package-json-files.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-1/sync-package-json-files.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,IAAI,EAIL,MAAM,YAAY,CAAC;AAEpB,wBAA8B,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,GAAG,MAAM,EAAE,CAAC,CAiFzE"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = update;
|
|
4
|
+
const devkit_1 = require("@nx/devkit");
|
|
5
|
+
async function update(tree) {
|
|
6
|
+
devkit_1.logger.info('🔄 Sync package json files deps...');
|
|
7
|
+
let filesUpdated = 0;
|
|
8
|
+
// Read the root package.json to get the target versions
|
|
9
|
+
const rootPackageJson = tree.read('package.json', 'utf-8');
|
|
10
|
+
if (!rootPackageJson) {
|
|
11
|
+
devkit_1.logger.error('❌ Could not read root package.json');
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
const rootPackage = JSON.parse(rootPackageJson);
|
|
15
|
+
const targetVersions = {
|
|
16
|
+
...rootPackage.dependencies,
|
|
17
|
+
...rootPackage.devDependencies
|
|
18
|
+
};
|
|
19
|
+
devkit_1.logger.info(`📦 Found ${Object.keys(targetVersions).length} dependencies to sync`);
|
|
20
|
+
// Find all package.json files in packages directory
|
|
21
|
+
(0, devkit_1.visitNotIgnoredFiles)(tree, '.', (filePath) => {
|
|
22
|
+
if (filePath.endsWith('package.json')) {
|
|
23
|
+
const content = tree.read(filePath, 'utf-8');
|
|
24
|
+
if (content) {
|
|
25
|
+
try {
|
|
26
|
+
const packageJson = JSON.parse(content);
|
|
27
|
+
let hasChanges = false;
|
|
28
|
+
// Sync dependencies
|
|
29
|
+
if (packageJson.dependencies) {
|
|
30
|
+
if (packageJson.dependencies["@nextgis/cancelable-promise"]) {
|
|
31
|
+
devkit_1.logger.info(`🔄 deleting dependency '@nextgis/cancelable-promise'`);
|
|
32
|
+
delete packageJson.dependencies["@nextgis/cancelable-promise"];
|
|
33
|
+
hasChanges = true;
|
|
34
|
+
}
|
|
35
|
+
for (const [depName, currentVersion] of Object.entries(packageJson.dependencies)) {
|
|
36
|
+
if (targetVersions[depName] && currentVersion !== targetVersions[depName]) {
|
|
37
|
+
devkit_1.logger.info(`🔄 Updating ${depName} from ${currentVersion} to ${targetVersions[depName]} in ${filePath}`);
|
|
38
|
+
packageJson.dependencies[depName] = targetVersions[depName];
|
|
39
|
+
hasChanges = true;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
// Sync devDependencies
|
|
44
|
+
if (packageJson.devDependencies) {
|
|
45
|
+
if (packageJson.devDependencies["@nextgis/cancelable-promise"]) {
|
|
46
|
+
devkit_1.logger.info(`🔄 deleting devDependencies '@nextgis/cancelable-promise'`);
|
|
47
|
+
delete packageJson.devDependencies["@nextgis/cancelable-promise"];
|
|
48
|
+
hasChanges = true;
|
|
49
|
+
}
|
|
50
|
+
for (const [depName, currentVersion] of Object.entries(packageJson.devDependencies)) {
|
|
51
|
+
if (targetVersions[depName] && currentVersion !== targetVersions[depName]) {
|
|
52
|
+
devkit_1.logger.info(`🔄 Updating ${depName} from ${currentVersion} to ${targetVersions[depName]} in ${filePath}`);
|
|
53
|
+
packageJson.devDependencies[depName] = targetVersions[depName];
|
|
54
|
+
hasChanges = true;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
if (hasChanges) {
|
|
59
|
+
// Write the updated package.json back
|
|
60
|
+
const updatedContent = JSON.stringify(packageJson, null, 2) + '\n';
|
|
61
|
+
tree.write(filePath, updatedContent);
|
|
62
|
+
filesUpdated++;
|
|
63
|
+
devkit_1.logger.info(`✅ Updated ${filePath}`);
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
catch (error) {
|
|
67
|
+
devkit_1.logger.error(`❌ Error parsing ${filePath}: ${error}`);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
});
|
|
72
|
+
if (filesUpdated > 0) {
|
|
73
|
+
await (0, devkit_1.formatFiles)(tree);
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
devkit_1.logger.info('ℹ️ No package.json files needed updating.');
|
|
77
|
+
}
|
|
78
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-kaltura-tools-to-pre-install.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-2/add-kaltura-tools-to-pre-install.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAsB,MAAM,YAAY,CAAC;AAEtD,wBAA8B,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAoB9D"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = update;
|
|
4
|
+
const devkit_1 = require("@nx/devkit");
|
|
5
|
+
async function update(tree) {
|
|
6
|
+
devkit_1.logger.info('🔄 Adding kaltura-tools preinstall script...');
|
|
7
|
+
try {
|
|
8
|
+
(0, devkit_1.updateJson)(tree, 'package.json', (json) => {
|
|
9
|
+
if (!json.scripts) {
|
|
10
|
+
json.scripts = {};
|
|
11
|
+
}
|
|
12
|
+
json.scripts.preinstall =
|
|
13
|
+
'npx --yes --prefer-online --registry=https://npm.pkg.github.com --package @kaltura/kaltura-tools@unisphere kaltura-tools check --root=.';
|
|
14
|
+
return json;
|
|
15
|
+
});
|
|
16
|
+
devkit_1.logger.info('✅ Successfully added kaltura-tools preinstall script');
|
|
17
|
+
}
|
|
18
|
+
catch (error) {
|
|
19
|
+
devkit_1.logger.error(`❌ Failed to add preinstall script: ${error?.message || 'Unknown error'}`);
|
|
20
|
+
throw error;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-os-and-cpu.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-2/add-os-and-cpu.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAsB,MAAM,YAAY,CAAC;AAEtD,wBAA8B,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAuB9D"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = update;
|
|
4
|
+
const devkit_1 = require("@nx/devkit");
|
|
5
|
+
async function update(tree) {
|
|
6
|
+
devkit_1.logger.info('🔄 updating os and cpu in package.json...');
|
|
7
|
+
try {
|
|
8
|
+
(0, devkit_1.updateJson)(tree, 'package.json', (json) => {
|
|
9
|
+
json.os = [
|
|
10
|
+
"darwin",
|
|
11
|
+
"linux",
|
|
12
|
+
"windows"
|
|
13
|
+
];
|
|
14
|
+
json.cpu = [
|
|
15
|
+
"x64",
|
|
16
|
+
"arm64"
|
|
17
|
+
];
|
|
18
|
+
return json;
|
|
19
|
+
});
|
|
20
|
+
devkit_1.logger.info('✅ Successfully added os and cpu to package.json');
|
|
21
|
+
}
|
|
22
|
+
catch (error) {
|
|
23
|
+
devkit_1.logger.error(`❌ Failed to add os and cpu to package.json: ${error?.message || 'Unknown error'}`);
|
|
24
|
+
throw error;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"replace-github-workflow.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-2/replace-github-workflow.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAU,MAAM,YAAY,CAAC;AAI1C,wBAA8B,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CA8C9D"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"summary.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-2/summary.ts"],"names":[],"mappings":"AAEA,0CAOC"}
|
|
@@ -4,9 +4,9 @@ exports.default = default_1;
|
|
|
4
4
|
const devkit_1 = require("@nx/devkit");
|
|
5
5
|
async function default_1() {
|
|
6
6
|
devkit_1.logger.info('');
|
|
7
|
-
devkit_1.logger.info('🎉 Migration to @unisphere/nx 1.22.
|
|
7
|
+
devkit_1.logger.info('🎉 Migration to @unisphere/nx 1.22.2 finished successfully!');
|
|
8
8
|
devkit_1.logger.info('');
|
|
9
9
|
devkit_1.logger.info('📋 Full details:');
|
|
10
|
-
devkit_1.logger.info('https://unisphere.kaltura.com/docs/create/changelog/1-22-
|
|
10
|
+
devkit_1.logger.info('https://unisphere.kaltura.com/docs/create/changelog/1-22-2-changelog');
|
|
11
11
|
devkit_1.logger.info('');
|
|
12
12
|
}
|
|
@@ -4,9 +4,54 @@ on:
|
|
|
4
4
|
workflow_call:
|
|
5
5
|
|
|
6
6
|
jobs:
|
|
7
|
-
|
|
7
|
+
check-elements:
|
|
8
8
|
runs-on: codebuild-ovp-unisphere-runner-${{ github.run_id }}-${{ github.attempt }}
|
|
9
|
+
outputs:
|
|
10
|
+
has_packages: ${{ steps.check.outputs.has_packages }}
|
|
11
|
+
has_runtimes: ${{ steps.check.outputs.has_runtimes }}
|
|
12
|
+
has_applications: ${{ steps.check.outputs.has_applications }}
|
|
13
|
+
steps:
|
|
14
|
+
- name: Checkout Repo
|
|
15
|
+
uses: actions/checkout@v3
|
|
16
|
+
with:
|
|
17
|
+
ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
|
|
18
|
+
fetch-tags: true
|
|
19
|
+
|
|
20
|
+
- name: Check elements in .unisphere
|
|
21
|
+
id: check
|
|
22
|
+
run: |
|
|
23
|
+
if [ -f .unisphere ]; then
|
|
24
|
+
PACKAGES=$(jq -r '.elements.packages // {} | length' .unisphere)
|
|
25
|
+
RUNTIMES=$(jq -r '(.elements.runtimes // {} | length) + (.elements.workspace // {} | length) + (.elements.loader // {} | length)' .unisphere)
|
|
26
|
+
APPLICATIONS=$(jq -r '.elements.applications // {} | length' .unisphere)
|
|
27
|
+
|
|
28
|
+
if [ "$PACKAGES" -gt 0 ]; then
|
|
29
|
+
echo "has_packages=true" >> $GITHUB_OUTPUT
|
|
30
|
+
else
|
|
31
|
+
echo "has_packages=false" >> $GITHUB_OUTPUT
|
|
32
|
+
fi
|
|
33
|
+
|
|
34
|
+
if [ "$RUNTIMES" -gt 0 ]; then
|
|
35
|
+
echo "has_runtimes=true" >> $GITHUB_OUTPUT
|
|
36
|
+
else
|
|
37
|
+
echo "has_runtimes=false" >> $GITHUB_OUTPUT
|
|
38
|
+
fi
|
|
39
|
+
|
|
40
|
+
if [ "$APPLICATIONS" -gt 0 ]; then
|
|
41
|
+
echo "has_applications=true" >> $GITHUB_OUTPUT
|
|
42
|
+
else
|
|
43
|
+
echo "has_applications=false" >> $GITHUB_OUTPUT
|
|
44
|
+
fi
|
|
45
|
+
else
|
|
46
|
+
echo "has_packages=false" >> $GITHUB_OUTPUT
|
|
47
|
+
echo "has_runtimes=false" >> $GITHUB_OUTPUT
|
|
48
|
+
echo "has_applications=false" >> $GITHUB_OUTPUT
|
|
49
|
+
fi
|
|
9
50
|
|
|
51
|
+
prepare-runtimes:
|
|
52
|
+
runs-on: codebuild-ovp-unisphere-runner-${{ github.run_id }}-${{ github.attempt }}
|
|
53
|
+
if: needs.check-elements.outputs.has_runtimes == 'true'
|
|
54
|
+
needs: check-elements
|
|
10
55
|
outputs:
|
|
11
56
|
unisphereElementsArtifactsFolder: ${{ steps.prepare-runtimes.outputs.artifactsRootFolder }}
|
|
12
57
|
hasArtifacts: ${{ steps.prepare-runtimes.outputs.hasArtifacts }}
|
|
@@ -35,7 +80,7 @@ jobs:
|
|
|
35
80
|
oidc-provider-name: ovp-github-oidc
|
|
36
81
|
|
|
37
82
|
- name: Install dependencies
|
|
38
|
-
run: npm ci --
|
|
83
|
+
run: npm ci --ignore-scripts
|
|
39
84
|
env:
|
|
40
85
|
GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
41
86
|
KALTURA_JFROG_TOKEN: ${{ steps.setup-jfrog.outputs.oidc-token }}
|
|
@@ -57,6 +102,8 @@ jobs:
|
|
|
57
102
|
retention-days: 1
|
|
58
103
|
|
|
59
104
|
deploy-packages:
|
|
105
|
+
if: needs.check-elements.outputs.has_packages == 'true'
|
|
106
|
+
needs: check-elements
|
|
60
107
|
runs-on: codebuild-ovp-unisphere-runner-${{ github.run_id }}-${{ github.attempt }}
|
|
61
108
|
steps:
|
|
62
109
|
- name: Checkout Repo
|
|
@@ -79,7 +126,7 @@ jobs:
|
|
|
79
126
|
|
|
80
127
|
- name: Install dependencies
|
|
81
128
|
run: |
|
|
82
|
-
npm ci --
|
|
129
|
+
npm ci --ignore-scripts
|
|
83
130
|
|
|
84
131
|
env:
|
|
85
132
|
GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -134,7 +181,7 @@ jobs:
|
|
|
134
181
|
|
|
135
182
|
- name: Install dependencies
|
|
136
183
|
run: |
|
|
137
|
-
npm ci --
|
|
184
|
+
npm ci --ignore-scripts
|
|
138
185
|
env:
|
|
139
186
|
GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
140
187
|
KALTURA_JFROG_TOKEN: ${{ steps.setup-jfrog.outputs.oidc-token }}
|
|
@@ -153,8 +200,9 @@ jobs:
|
|
|
153
200
|
--artifacts-folder '${{ needs.prepare-runtimes.outputs.unisphereElementsArtifactsFolder }}' \
|
|
154
201
|
--verbose
|
|
155
202
|
|
|
156
|
-
|
|
157
|
-
|
|
203
|
+
prepare-applications:
|
|
204
|
+
if: needs.check-elements.outputs.has_applications == 'true'
|
|
205
|
+
needs: [deploy-runtimes, check-elements]
|
|
158
206
|
runs-on:
|
|
159
207
|
- codebuild-ovp-unisphere-runner-${{ github.run_id }}-${{ github.attempt }}
|
|
160
208
|
- instance-size:medium
|
|
@@ -177,7 +225,7 @@ jobs:
|
|
|
177
225
|
- name: Clean npm cache
|
|
178
226
|
run: npm cache clean --force
|
|
179
227
|
- name: Install dependencies
|
|
180
|
-
run: npm ci --
|
|
228
|
+
run: npm ci --ignore-scripts
|
|
181
229
|
env:
|
|
182
230
|
GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
183
231
|
- name: Prepare Unisphere Applications
|
|
@@ -224,7 +272,7 @@ jobs:
|
|
|
224
272
|
with:
|
|
225
273
|
node-version: 20
|
|
226
274
|
- name: Install dependencies
|
|
227
|
-
run: npm ci --
|
|
275
|
+
run: npm ci --ignore-scripts
|
|
228
276
|
env:
|
|
229
277
|
GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
230
278
|
- name: Download artifacts folder
|
|
@@ -21,18 +21,18 @@ jobs:
|
|
|
21
21
|
hasChangesets: ${{ steps.changesets.outputs.hasChangesets }}
|
|
22
22
|
steps:
|
|
23
23
|
- name: Check if part of prerelease or official release
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
24
|
+
id: check
|
|
25
|
+
run: |
|
|
26
|
+
if [ "${{ github.ref }}" = "refs/heads/main" ] && [ -f ".changeset/pre.json" ]; then
|
|
27
|
+
echo "main branch should not have pre.json file, skipping job"
|
|
28
|
+
exit 1
|
|
29
|
+
elif [[ "${{ github.ref }}" == "refs/heads/prerelease/"* ]] && [ ! -f ".changeset/pre.json" ]; then
|
|
30
|
+
echo "prerelease branch must have pre.json file, skipping job"
|
|
31
|
+
exit 1
|
|
32
|
+
elif [ "${{ github.ref }}" != "refs/heads/main" ] && [[ "${{ github.ref }}" != "refs/heads/prerelease/"* ]]; then
|
|
33
|
+
echo "not part of prerelease or official release, skipping job"
|
|
34
|
+
exit 1
|
|
35
|
+
fi
|
|
36
36
|
|
|
37
37
|
- name: Checkout Repo
|
|
38
38
|
uses: actions/checkout@v4
|
|
@@ -43,7 +43,7 @@ jobs:
|
|
|
43
43
|
node-version-file: '.nvmrc'
|
|
44
44
|
|
|
45
45
|
- name: Run Kaltura Tools Check
|
|
46
|
-
uses: kaltura/kaltura-tools@
|
|
46
|
+
uses: kaltura/kaltura-tools@unisphere
|
|
47
47
|
with:
|
|
48
48
|
repo-path: '${{ github.workspace }}'
|
|
49
49
|
|
|
@@ -56,7 +56,7 @@ jobs:
|
|
|
56
56
|
oidc-provider-name: ovp-github-oidc
|
|
57
57
|
|
|
58
58
|
- name: Install Dependencies
|
|
59
|
-
run: npm ci --include=optional
|
|
59
|
+
run: npm ci --include=optional
|
|
60
60
|
env:
|
|
61
61
|
GIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
62
62
|
KALTURA_JFROG_TOKEN: ${{ steps.setup-jfrog.outputs.oidc-token }}
|
package/migrations.json
CHANGED
|
@@ -8,22 +8,6 @@
|
|
|
8
8
|
"postUpdateMessage": "✅ .npmrc has been replaced with updated version."
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
|
-
"1-22-1-fix-dependency-versions": {
|
|
12
|
-
"version": "1.22.1",
|
|
13
|
-
"description": "Removes ^ from @changesets/cli version in package.json",
|
|
14
|
-
"factory": "./dist/migrations/1-22-0/fix-dependency-versions.js",
|
|
15
|
-
"cli": {
|
|
16
|
-
"postUpdateMessage": "✅ @changesets/cli version has been pinned to exact version (^ removed)."
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
"1-22-0-update-github-workflow": {
|
|
20
|
-
"version": "1.22.0",
|
|
21
|
-
"description": "Updates .github/workflows/cicd.yml from template",
|
|
22
|
-
"factory": "./dist/migrations/1-22-0/update-github-workflow.js",
|
|
23
|
-
"cli": {
|
|
24
|
-
"postUpdateMessage": "✅ GitHub workflow updated to use jsfrog. Review .github/workflows/cicd.yml if you have custom changes."
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
11
|
"1-22-0-check-nx-version": {
|
|
28
12
|
"version": "1.22.0",
|
|
29
13
|
"description": "Checks that Nx version is 22 or higher",
|
|
@@ -40,10 +24,44 @@
|
|
|
40
24
|
"postUpdateMessage": "✅ Patches have been replaced with updated version for Nx 22.1.3."
|
|
41
25
|
}
|
|
42
26
|
},
|
|
43
|
-
"1-22-
|
|
44
|
-
"version": "1.22.
|
|
27
|
+
"1-22-1-sync-inner-package-json-dependencies": {
|
|
28
|
+
"version": "1.22.1",
|
|
29
|
+
"description": "Syncs inner package.json dependencies with root package.json",
|
|
30
|
+
"factory": "./dist/migrations/1-22-1/sync-package-json-files.js"
|
|
31
|
+
},
|
|
32
|
+
"1-22-1-fix-dependency-versions": {
|
|
33
|
+
"version": "1.22.1",
|
|
34
|
+
"description": "Removes ^ from @changesets/cli version in package.json",
|
|
35
|
+
"factory": "./dist/migrations/1-22-1/fix-dependency-versions.js",
|
|
36
|
+
"cli": {
|
|
37
|
+
"postUpdateMessage": "✅ @changesets/cli version has been pinned to exact version (^ removed)."
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"1-22-2-add-os-and-cpu": {
|
|
41
|
+
"version": "1.22.2",
|
|
42
|
+
"description": "Adds os and cpu to package.json",
|
|
43
|
+
"factory": "./dist/migrations/1-22-2/add-os-and-cpu.js",
|
|
44
|
+
"cli": {
|
|
45
|
+
"postUpdateMessage": "✅ os and cpu have been added to package.json."
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
"1-22-2-add-kaltura-tools-to-pre-install": {
|
|
49
|
+
"version": "1.22.2",
|
|
50
|
+
"description": "Adds kaltura-tools to preinstall script",
|
|
51
|
+
"factory": "./dist/migrations/1-22-2/add-kaltura-tools-to-pre-install.js"
|
|
52
|
+
},
|
|
53
|
+
"1-22-2-replace-github-workflow": {
|
|
54
|
+
"version": "1.22.2",
|
|
55
|
+
"description": "Updates .github/workflows/cicd.yml from template",
|
|
56
|
+
"factory": "./dist/migrations/1-22-2/replace-github-workflow.js",
|
|
57
|
+
"cli": {
|
|
58
|
+
"postUpdateMessage": "✅ GitHub workflow updated with some changes."
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
"1-22-2-000-summary": {
|
|
62
|
+
"version": "1.22.2",
|
|
45
63
|
"description": "Prints migration completion summary",
|
|
46
|
-
"factory": "./dist/migrations/1-22-
|
|
64
|
+
"factory": "./dist/migrations/1-22-2/summary.js"
|
|
47
65
|
}
|
|
48
66
|
},
|
|
49
67
|
"packageJsonUpdates": {
|
|
@@ -53,7 +71,7 @@
|
|
|
53
71
|
"postUpdateMessage": "🎉 Migration to @unisphere/nx 1.22.0 finished successfully!\n\n📋 Full details: https://unisphere.kaltura.com/docs/create/changelog/1-22-0-changelog",
|
|
54
72
|
"packages": {
|
|
55
73
|
"@unisphere/cli": {
|
|
56
|
-
"version": "1.56.2",
|
|
74
|
+
"version": "^1.56.2",
|
|
57
75
|
"alwaysAddToPackageJson": true
|
|
58
76
|
},
|
|
59
77
|
"@unisphere/core": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unisphere/nx",
|
|
3
|
-
"version": "1.22.
|
|
3
|
+
"version": "1.22.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -69,11 +69,6 @@
|
|
|
69
69
|
"input": "./packages/nx/src/generators",
|
|
70
70
|
"glob": "**/templates/**/*",
|
|
71
71
|
"output": "./generators"
|
|
72
|
-
},
|
|
73
|
-
{
|
|
74
|
-
"input": "./packages/nx",
|
|
75
|
-
"glob": "migrations.json",
|
|
76
|
-
"output": "."
|
|
77
72
|
}
|
|
78
73
|
]
|
|
79
74
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"summary.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-0/summary.ts"],"names":[],"mappings":"AAEA,0CAOC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"update-github-workflow.d.ts","sourceRoot":"","sources":["../../../src/migrations/1-22-0/update-github-workflow.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAU,MAAM,YAAY,CAAC;AAI1C,wBAA8B,MAAM,CAAC,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CA8C9D"}
|
package/dist/migrations.json
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"generators": {
|
|
3
|
-
"1-22-0-replace-npmrc": {
|
|
4
|
-
"version": "1.22.0",
|
|
5
|
-
"description": "Replaces .npmrc with updated version",
|
|
6
|
-
"factory": "./dist/migrations/1-22-0/replace-npmrc.js",
|
|
7
|
-
"cli": {
|
|
8
|
-
"postUpdateMessage": "✅ .npmrc has been replaced with updated version."
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
"1-22-1-fix-dependency-versions": {
|
|
12
|
-
"version": "1.22.1",
|
|
13
|
-
"description": "Removes ^ from @changesets/cli version in package.json",
|
|
14
|
-
"factory": "./dist/migrations/1-22-0/fix-dependency-versions.js",
|
|
15
|
-
"cli": {
|
|
16
|
-
"postUpdateMessage": "✅ @changesets/cli version has been pinned to exact version (^ removed)."
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
"1-22-0-update-github-workflow": {
|
|
20
|
-
"version": "1.22.0",
|
|
21
|
-
"description": "Updates .github/workflows/cicd.yml from template",
|
|
22
|
-
"factory": "./dist/migrations/1-22-0/update-github-workflow.js",
|
|
23
|
-
"cli": {
|
|
24
|
-
"postUpdateMessage": "✅ GitHub workflow updated to use jsfrog. Review .github/workflows/cicd.yml if you have custom changes."
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"1-22-0-check-nx-version": {
|
|
28
|
-
"version": "1.22.0",
|
|
29
|
-
"description": "Checks that Nx version is 22 or higher",
|
|
30
|
-
"factory": "./dist/migrations/1-22-0/check-nx-version.js",
|
|
31
|
-
"cli": {
|
|
32
|
-
"postUpdateMessage": "✅ Nx version check completed. Your project is using Nx 22 or higher."
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
|
-
"1-22-0-replace-patches": {
|
|
36
|
-
"version": "1.22.0",
|
|
37
|
-
"description": "Replaces patches with updated version for Nx 22.1.3",
|
|
38
|
-
"factory": "./dist/migrations/1-22-0/replace-patches.js",
|
|
39
|
-
"cli": {
|
|
40
|
-
"postUpdateMessage": "✅ Patches have been replaced with updated version for Nx 22.1.3."
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
"1-22-0-000-summary": {
|
|
44
|
-
"version": "1.22.0",
|
|
45
|
-
"description": "Prints migration completion summary",
|
|
46
|
-
"factory": "./dist/migrations/1-22-0/summary.js"
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"packageJsonUpdates": {
|
|
50
|
-
"1.22.0": {
|
|
51
|
-
"version": "1.22.0",
|
|
52
|
-
"cli": "nx",
|
|
53
|
-
"postUpdateMessage": "🎉 Migration to @unisphere/nx 1.22.0 finished successfully!\n\n📋 Full details: https://unisphere.kaltura.com/docs/create/changelog/1-22-0-changelog",
|
|
54
|
-
"packages": {
|
|
55
|
-
"@unisphere/cli": {
|
|
56
|
-
"version": "1.56.2",
|
|
57
|
-
"alwaysAddToPackageJson": true
|
|
58
|
-
},
|
|
59
|
-
"@unisphere/core": {
|
|
60
|
-
"version": "^1.86.2",
|
|
61
|
-
"alwaysAddToPackageJson": false
|
|
62
|
-
},
|
|
63
|
-
"@unisphere/runtime": {
|
|
64
|
-
"version": "^1.85.2",
|
|
65
|
-
"alwaysAddToPackageJson": false
|
|
66
|
-
},
|
|
67
|
-
"@unisphere/runtime-js": {
|
|
68
|
-
"version": "^1.84.2",
|
|
69
|
-
"alwaysAddToPackageJson": false
|
|
70
|
-
},
|
|
71
|
-
"@unisphere/runtime-react": {
|
|
72
|
-
"version": "1.72.0",
|
|
73
|
-
"alwaysAddToPackageJson": false
|
|
74
|
-
},
|
|
75
|
-
"@nx/nx-linux-x64-gnu": {
|
|
76
|
-
"version": "^22.0.1",
|
|
77
|
-
"addToPackageJson": "optionalDependencies",
|
|
78
|
-
"alwaysAddToPackageJson": false
|
|
79
|
-
},
|
|
80
|
-
"@changesets/cli": {
|
|
81
|
-
"version": "2.29.7",
|
|
82
|
-
"alwaysAddToPackageJson": true
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
}
|
|
File without changes
|
|
File without changes
|
/package/dist/migrations/{1-22-0/update-github-workflow.js → 1-22-2/replace-github-workflow.js}
RENAMED
|
File without changes
|
|
File without changes
|