Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 906 Bytes

File metadata and controls

36 lines (24 loc) · 906 Bytes

build

Build registries from registry.json. The registry.json must follow th schema in schema-item.json

Synopsis

php artisan flexi:build [--output|-o <dir>] [--override|--no-override]

Options

  • --output, -o <dir>: Output directory relative to current directory (default public/r)
  • --override: Force override components even if version is unchanged
  • --no-override: Never override components if version is unchanged

Description

Invokes the registry builder to produce a registry-item-name.json file (or files) in the specified output folder.

Examples

# 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