@artilingo/artiframe-cli 1.2.0 → 1.2.1
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artilingo/artiframe-cli",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "ArtiFrame — Zero-dependency native PHP framework with a powerful multilingual CLI. Scaffold projects, generate views, APIs and classes instantly.",
|
|
5
5
|
"main": "bin/artiframe.js",
|
|
6
6
|
"bin": {
|
|
@@ -240,7 +240,7 @@ class NewProjectCommand
|
|
|
240
240
|
$pct,
|
|
241
241
|
$this->currentStep,
|
|
242
242
|
$this->totalSteps,
|
|
243
|
-
mb_substr($label, 0, 25)
|
|
243
|
+
function_exists('mb_substr') ? mb_substr($label, 0, 25) : substr($label, 0, 25)
|
|
244
244
|
);
|
|
245
245
|
|
|
246
246
|
// Aynı satırı güncelle (\r ile başa dön, yeni satır yok)
|