@h-rig/core 0.0.0-e2e-live3.20260630092056 → 0.0.0-e2e-live4.20260630092940
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.
|
@@ -552,6 +552,8 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
552
552
|
const directFilePath = resolvedFilePath(args.path, configDir);
|
|
553
553
|
if (directFilePath)
|
|
554
554
|
return { path: directFilePath };
|
|
555
|
+
if (args.path.startsWith("#"))
|
|
556
|
+
return;
|
|
555
557
|
const packageImport = packageNameAndSubpath(args.path);
|
|
556
558
|
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
557
559
|
if (projectPackagePath)
|
package/dist/src/hook-runner.js
CHANGED
|
@@ -329,6 +329,8 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
329
329
|
const directFilePath = resolvedFilePath(args.path, configDir);
|
|
330
330
|
if (directFilePath)
|
|
331
331
|
return { path: directFilePath };
|
|
332
|
+
if (args.path.startsWith("#"))
|
|
333
|
+
return;
|
|
332
334
|
const packageImport = packageNameAndSubpath(args.path);
|
|
333
335
|
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
334
336
|
if (projectPackagePath)
|
|
@@ -364,6 +364,8 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
364
364
|
const directFilePath = resolvedFilePath(args.path, configDir);
|
|
365
365
|
if (directFilePath)
|
|
366
366
|
return { path: directFilePath };
|
|
367
|
+
if (args.path.startsWith("#"))
|
|
368
|
+
return;
|
|
367
369
|
const packageImport = packageNameAndSubpath(args.path);
|
|
368
370
|
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
369
371
|
if (projectPackagePath)
|
package/dist/src/load-config.js
CHANGED
|
@@ -329,6 +329,8 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
329
329
|
const directFilePath = resolvedFilePath(args.path, configDir);
|
|
330
330
|
if (directFilePath)
|
|
331
331
|
return { path: directFilePath };
|
|
332
|
+
if (args.path.startsWith("#"))
|
|
333
|
+
return;
|
|
332
334
|
const packageImport = packageNameAndSubpath(args.path);
|
|
333
335
|
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
334
336
|
if (projectPackagePath)
|
|
@@ -552,6 +552,8 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
552
552
|
const directFilePath = resolvedFilePath(args.path, configDir);
|
|
553
553
|
if (directFilePath)
|
|
554
554
|
return { path: directFilePath };
|
|
555
|
+
if (args.path.startsWith("#"))
|
|
556
|
+
return;
|
|
555
557
|
const packageImport = packageNameAndSubpath(args.path);
|
|
556
558
|
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
557
559
|
if (projectPackagePath)
|
|
@@ -552,6 +552,8 @@ async function importConfigViaRuntimeBundleUnserialized(configPath) {
|
|
|
552
552
|
const directFilePath = resolvedFilePath(args.path, configDir);
|
|
553
553
|
if (directFilePath)
|
|
554
554
|
return { path: directFilePath };
|
|
555
|
+
if (args.path.startsWith("#"))
|
|
556
|
+
return;
|
|
555
557
|
const packageImport = packageNameAndSubpath(args.path);
|
|
556
558
|
const projectPackagePath = resolveProjectPackageImport(args.path, configProjectRoot);
|
|
557
559
|
if (projectPackagePath)
|
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-live4.20260630092940",
|
|
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-live4.20260630092940",
|
|
185
|
+
"@rig/kernel-seed": "npm:@h-rig/kernel-seed@0.0.0-e2e-live4.20260630092940",
|
|
186
186
|
"effect": "4.0.0-beta.90",
|
|
187
187
|
"smol-toml": "^1.6.0"
|
|
188
188
|
}
|