Build registries from registry.json.
The registry.json must follow th schema in schema-item.json
php artisan flexi:build [--output|-o <dir>] [--override|--no-override]--output, -o <dir>: Output directory relative to current directory (defaultpublic/r)--override: Force override components even if version is unchanged--no-override: Never override components if version is unchanged
Invokes the registry builder to produce a registry-item-name.json file (or files) in the specified output folder.
# Build to default output
php artisan flexi:build
# Build to a custom directory
php artisan flexi:build -o build/registries
# Force override all components
php artisan flexi:build --override
# Skip building unchanged components
php artisan flexi:build --no-override