core-maugli 1.2.47 → 1.2.48
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/package.json
CHANGED
package/scripts/check-version.js
CHANGED
|
@@ -333,10 +333,6 @@ async function main() {
|
|
|
333
333
|
console.log(colorize('\n✅ Proceeding with build...\n', 'green'));
|
|
334
334
|
}
|
|
335
335
|
|
|
336
|
-
function colorize(text, color) {
|
|
337
|
-
return `${colors[color]}${text}${colors.reset}`;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
336
|
main().catch(error => {
|
|
341
337
|
console.error(colorize('❌ Version check failed:', 'red'), error.message);
|
|
342
338
|
console.log(colorize('⚠️ Continuing with build...', 'yellow'));
|