Efficiently\Larasset\Commands\AssetsCommand::deleteManifest PHP Method

deleteManifest() protected method

Delete Manifest file(s) in the application's assets path
protected deleteManifest ( ) : void
return void
    protected function deleteManifest()
    {
        $manifests = find_paths(public_path('assets/') . 'manifest-*.json');
        foreach ($manifests as $manifest) {
            File::delete($manifest);
        }
    }