Refactor compare-view component to use observables for data loading, enhancing performance and responsiveness. Update compare service interfaces and methods for improved delta computation. Modify audit log component to handle optional event properties gracefully. Optimize Monaco editor worker loading to reduce bundle size. Introduce shared SCSS mixins for consistent styling across components. Add Gitea test instance setup and NuGet package publishing test scripts for CI/CD validation. Update documentation paths and ensure all references are accurate.
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
"""Generate manifests for curated binaries.
|
||||
|
||||
- .nuget/manifest.json : NuGet packages (id, version, sha256)
|
||||
- vendor/manifest.json : Plugin/tool/deploy/ops binaries with sha256
|
||||
- offline/feeds/manifest.json : Offline bundles (tar/tgz/zip) with sha256
|
||||
- devops/manifests/binary-plugins.manifest.json : Plugin/tool/deploy/ops binaries with sha256
|
||||
- devops/offline/feeds/manifest.json : Offline bundles (tar/tgz/zip) with sha256
|
||||
|
||||
Intended to be idempotent and run in CI to ensure manifests stay current.
|
||||
"""
|
||||
@@ -99,16 +99,16 @@ def generate_vendor_manifest() -> None:
|
||||
"entries": entries,
|
||||
}
|
||||
|
||||
vendor_dir = ROOT / "vendor"
|
||||
vendor_dir.mkdir(exist_ok=True)
|
||||
write_json(vendor_dir / "manifest.json", manifest)
|
||||
manifests_dir = ROOT / "devops" / "manifests"
|
||||
manifests_dir.mkdir(parents=True, exist_ok=True)
|
||||
write_json(manifests_dir / "binary-plugins.manifest.json", manifest)
|
||||
|
||||
|
||||
FEED_SUFFIXES = (".tar.gz", ".tgz", ".tar", ".zip", ".gz")
|
||||
|
||||
|
||||
def generate_offline_manifest() -> None:
|
||||
feeds_dir = ROOT / "offline" / "feeds"
|
||||
feeds_dir = ROOT / "devops" / "offline" / "feeds"
|
||||
feeds_dir.mkdir(parents=True, exist_ok=True)
|
||||
|
||||
existing = {}
|
||||
|
||||
Reference in New Issue
Block a user