@h-rig/core 0.0.6-alpha.177 → 0.0.6-alpha.179
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.
|
@@ -903,6 +903,7 @@ function createTaskFieldRegistry(extensions) {
|
|
|
903
903
|
import {
|
|
904
904
|
MANAGED_REPO_SERVICE_CAPABILITY,
|
|
905
905
|
REPO_CHANGE_SET,
|
|
906
|
+
REPO_GIT_BINARY,
|
|
906
907
|
REPO_NATIVE_GIT,
|
|
907
908
|
RUNTIME_SECRETS,
|
|
908
909
|
SESSION_ASSET_MATERIALIZER,
|
|
@@ -1069,6 +1070,7 @@ function setScopeRules(rules) {
|
|
|
1069
1070
|
// packages/core/src/plugin-host-context.ts
|
|
1070
1071
|
var ManagedRepoCap = defineCapability(MANAGED_REPO_SERVICE_CAPABILITY);
|
|
1071
1072
|
var RepoChangeSetCap = defineCapability(REPO_CHANGE_SET);
|
|
1073
|
+
var RepoGitBinaryCap = defineCapability(REPO_GIT_BINARY);
|
|
1072
1074
|
var RepoNativeGitCap = defineCapability(REPO_NATIVE_GIT);
|
|
1073
1075
|
var RuntimeSecretsCap = defineCapability(RUNTIME_SECRETS);
|
|
1074
1076
|
var SessionAssetMaterializerCap = defineCapability(SESSION_ASSET_MATERIALIZER);
|
|
@@ -1107,6 +1109,7 @@ async function buildPluginHostContext(projectRoot) {
|
|
|
1107
1109
|
installCapability(capability, impl);
|
|
1108
1110
|
}
|
|
1109
1111
|
await installIfResolved(RepoChangeSetCap);
|
|
1112
|
+
await installIfResolved(RepoGitBinaryCap);
|
|
1110
1113
|
await installIfResolved(RepoNativeGitCap);
|
|
1111
1114
|
await installIfResolved(RuntimeSecretsCap);
|
|
1112
1115
|
await installIfResolved(TaskArtifactsCap);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-rig/core",
|
|
3
|
-
"version": "0.0.6-alpha.
|
|
3
|
+
"version": "0.0.6-alpha.179",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Config and plugin composition library for Rig's OMP extension ecosystem; not a product host/runtime.",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -181,8 +181,8 @@
|
|
|
181
181
|
"module": "./dist/src/index.js",
|
|
182
182
|
"types": "./dist/src/index.d.ts",
|
|
183
183
|
"dependencies": {
|
|
184
|
-
"@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.
|
|
185
|
-
"@rig/kernel-seed": "npm:@h-rig/kernel-seed@0.0.6-alpha.
|
|
184
|
+
"@rig/contracts": "npm:@h-rig/contracts@0.0.6-alpha.179",
|
|
185
|
+
"@rig/kernel-seed": "npm:@h-rig/kernel-seed@0.0.6-alpha.179",
|
|
186
186
|
"effect": "4.0.0-beta.90",
|
|
187
187
|
"smol-toml": "^1.6.0"
|
|
188
188
|
}
|