juxscript 1.1.348 → 1.1.349
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/compiler4.js +1 -0
- package/package.json +1 -1
package/machinery/compiler4.js
CHANGED
|
@@ -427,6 +427,7 @@ export class JuxCompiler {
|
|
|
427
427
|
console.log('🚀 JUX Build\n');
|
|
428
428
|
|
|
429
429
|
const juxscriptPath = this.findJuxscriptPath();
|
|
430
|
+
console.log('🔍 Locating juxscript...', juxscriptPath);
|
|
430
431
|
if (!juxscriptPath) {
|
|
431
432
|
console.error('❌ Could not locate juxscript package');
|
|
432
433
|
return { success: false, errors: [{ message: 'juxscript not found' }], warnings: [] };
|