juxscript 1.0.80 → 1.0.81
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/machinery/compiler.js +1 -0
- package/package.json +1 -1
package/machinery/compiler.js
CHANGED
|
@@ -398,6 +398,7 @@ function resolveImportPath(importPath, currentFilePath) {
|
|
|
398
398
|
// ✅ Ensure normalized separators
|
|
399
399
|
const resolved = path.join(currentDir, importPath).replace(/\\/g, '/');
|
|
400
400
|
// console.log(`[Resolve] Relative: "${importPath}" (from ${currentFilePath}) -> "${resolved}"`);
|
|
401
|
+
console.log(`[Resolve] Importing "${importPath}" from "${currentFilePath}" -> Resolved: "${resolved}"`);
|
|
401
402
|
return resolved;
|
|
402
403
|
}
|
|
403
404
|
|