@h-rig/core 0.0.0-e2e-live5.20260630094159 → 0.0.0-e2e-live6.20260630094923
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.
|
@@ -555,7 +555,7 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
555
555
|
if (args.path.startsWith("#"))
|
|
556
556
|
return;
|
|
557
557
|
const packageImport = packageNameAndSubpath(args.path);
|
|
558
|
-
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
558
|
+
const projectPackagePath = packageImport?.packageName.startsWith("@rig/") ? resolveProjectPackageImport(args.path, configProjectRoot) : null;
|
|
559
559
|
if (projectPackagePath)
|
|
560
560
|
return { path: projectPackagePath };
|
|
561
561
|
if (packageImport && (packageImport.packageName.startsWith("@rig/") || RUNTIME_ONLY_EXTERNAL_PACKAGES.has(packageImport.packageName))) {
|
package/dist/src/hook-runner.js
CHANGED
|
@@ -332,7 +332,7 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
332
332
|
if (args.path.startsWith("#"))
|
|
333
333
|
return;
|
|
334
334
|
const packageImport = packageNameAndSubpath(args.path);
|
|
335
|
-
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
335
|
+
const projectPackagePath = packageImport?.packageName.startsWith("@rig/") ? resolveProjectPackageImport(args.path, configProjectRoot) : null;
|
|
336
336
|
if (projectPackagePath)
|
|
337
337
|
return { path: projectPackagePath };
|
|
338
338
|
if (packageImport && (packageImport.packageName.startsWith("@rig/") || RUNTIME_ONLY_EXTERNAL_PACKAGES.has(packageImport.packageName))) {
|
|
@@ -367,7 +367,7 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
367
367
|
if (args.path.startsWith("#"))
|
|
368
368
|
return;
|
|
369
369
|
const packageImport = packageNameAndSubpath(args.path);
|
|
370
|
-
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
370
|
+
const projectPackagePath = packageImport?.packageName.startsWith("@rig/") ? resolveProjectPackageImport(args.path, configProjectRoot) : null;
|
|
371
371
|
if (projectPackagePath)
|
|
372
372
|
return { path: projectPackagePath };
|
|
373
373
|
if (packageImport && (packageImport.packageName.startsWith("@rig/") || RUNTIME_ONLY_EXTERNAL_PACKAGES.has(packageImport.packageName))) {
|
package/dist/src/load-config.js
CHANGED
|
@@ -332,7 +332,7 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
332
332
|
if (args.path.startsWith("#"))
|
|
333
333
|
return;
|
|
334
334
|
const packageImport = packageNameAndSubpath(args.path);
|
|
335
|
-
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
335
|
+
const projectPackagePath = packageImport?.packageName.startsWith("@rig/") ? resolveProjectPackageImport(args.path, configProjectRoot) : null;
|
|
336
336
|
if (projectPackagePath)
|
|
337
337
|
return { path: projectPackagePath };
|
|
338
338
|
if (packageImport && (packageImport.packageName.startsWith("@rig/") || RUNTIME_ONLY_EXTERNAL_PACKAGES.has(packageImport.packageName))) {
|
|
@@ -555,7 +555,7 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
555
555
|
if (args.path.startsWith("#"))
|
|
556
556
|
return;
|
|
557
557
|
const packageImport = packageNameAndSubpath(args.path);
|
|
558
|
-
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
558
|
+
const projectPackagePath = packageImport?.packageName.startsWith("@rig/") ? resolveProjectPackageImport(args.path, configProjectRoot) : null;
|
|
559
559
|
if (projectPackagePath)
|
|
560
560
|
return { path: projectPackagePath };
|
|
561
561
|
if (packageImport && (packageImport.packageName.startsWith("@rig/") || RUNTIME_ONLY_EXTERNAL_PACKAGES.has(packageImport.packageName))) {
|
|
@@ -555,7 +555,7 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
555
555
|
if (args.path.startsWith("#"))
|
|
556
556
|
return;
|
|
557
557
|
const packageImport = packageNameAndSubpath(args.path);
|
|
558
|
-
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
558
|
+
const projectPackagePath = packageImport?.packageName.startsWith("@rig/") ? resolveProjectPackageImport(args.path, configProjectRoot) : null;
|
|
559
559
|
if (projectPackagePath)
|
|
560
560
|
return { path: projectPackagePath };
|
|
561
561
|
if (packageImport && (packageImport.packageName.startsWith("@rig/") || RUNTIME_ONLY_EXTERNAL_PACKAGES.has(packageImport.packageName))) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@h-rig/core",
|
|
3
|
-
"version": "0.0.0-e2e-
|
|
3
|
+
"version": "0.0.0-e2e-live6.20260630094923",
|
|
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.0-e2e-
|
|
185
|
-
"@rig/kernel-seed": "npm:@h-rig/kernel-seed@0.0.0-e2e-
|
|
184
|
+
"@rig/contracts": "npm:@h-rig/contracts@0.0.0-e2e-live6.20260630094923",
|
|
185
|
+
"@rig/kernel-seed": "npm:@h-rig/kernel-seed@0.0.0-e2e-live6.20260630094923",
|
|
186
186
|
"effect": "4.0.0-beta.90",
|
|
187
187
|
"smol-toml": "^1.6.0"
|
|
188
188
|
}
|