for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Yii\Bulma\Asset;
use Yiisoft\Assets\AssetBundle;
use Yiisoft\Files\PathMatcher\PathMatcher;
final class NavBarAsset extends AssetBundle
{
public ?string $basePath = '@assets';
public ?string $baseUrl = '@assetsUrl';
public ?string $sourcePath = '@npm/vizuaalog--bulmajs';
public array $js = [
'dist/navbar.js',
];
public function __construct()
$this->publishOptions = [
'filter' => (new PathMatcher())->only('dist/navbar.js'),
}