@prooflane/inspector-beta 0.1.0-beta.7 → 0.1.0-beta.9
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/cli.mjs +2 -2
- package/dist/server.mjs +236 -90
- package/dist/ui/assets/index-CPtCo7m6.js +69 -0
- package/dist/ui/index.html +1 -1
- package/package.json +1 -1
- package/dist/ui/assets/index-T0eXH06n.js +0 -69
package/dist/cli.mjs
CHANGED
|
@@ -6919,7 +6919,7 @@ function readLegacyLocalSuiteArtifact(file, cwd = process.cwd()) {
|
|
|
6919
6919
|
displayName: localDisplayName(suite.id),
|
|
6920
6920
|
localFingerprint,
|
|
6921
6921
|
manifest,
|
|
6922
|
-
migrationManifestHash:
|
|
6922
|
+
migrationManifestHash: migrationManifestHash(manifest),
|
|
6923
6923
|
suite,
|
|
6924
6924
|
pillarCounts,
|
|
6925
6925
|
genericCompatibility: { compatible: supported === suite.tests.length, supported, unsupported: suite.tests.length - supported }
|
|
@@ -6961,7 +6961,7 @@ function discoverLegacyLocalSuites(input = {}) {
|
|
|
6961
6961
|
return { suites: suites2, issues };
|
|
6962
6962
|
}
|
|
6963
6963
|
function migrationManifestHash(manifest) {
|
|
6964
|
-
const { policyRef: _policyRef, ...content } = manifest;
|
|
6964
|
+
const { policyRef: _policyRef, targetFingerprint: _targetFingerprint, requiredCapabilities: _requiredCapabilities, ...content } = manifest;
|
|
6965
6965
|
return hashGovernedSuiteManifest(content);
|
|
6966
6966
|
}
|
|
6967
6967
|
function planLegacyLocalSuiteMigration(local, cloud) {
|