fleetbo-cockpit-cli 1.0.211 → 1.0.212
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/cli.js +3 -3
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -367,7 +367,7 @@ if (command === 'alex') {
|
|
|
367
367
|
for (let modName of potentialModules) {
|
|
368
368
|
let isReferenceOnly = false;
|
|
369
369
|
|
|
370
|
-
//
|
|
370
|
+
// LE DÉTECTEUR D'INSPIRATION
|
|
371
371
|
if (modName.endsWith('Ref')) {
|
|
372
372
|
isReferenceOnly = true;
|
|
373
373
|
modName = modName.replace('Ref', '');
|
|
@@ -376,10 +376,10 @@ if (command === 'alex') {
|
|
|
376
376
|
modName = modName.replace('Schema', '');
|
|
377
377
|
}
|
|
378
378
|
|
|
379
|
-
process.stdout.write(`
|
|
379
|
+
process.stdout.write(` \x1b[90m Checking Alex memory for ${modName} module...\x1b[0m`);
|
|
380
380
|
const cache = await getModuleCache({ projectId, moduleName: modName });
|
|
381
381
|
|
|
382
|
-
//
|
|
382
|
+
// LECTURE LOCALE DU VRAI CODE KOTLIN (La Vérité Absolue)
|
|
383
383
|
const localKtPath = path.join(process.cwd(), 'public', 'native', 'android', `${modName}.kt`);
|
|
384
384
|
let actualMetalCode = "";
|
|
385
385
|
|