PHP code example of nsrosenqvist / phulp-underscore-filter

1. Go to this page and download the library: Download nsrosenqvist/phulp-underscore-filter library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

nsrosenqvist / phulp-underscore-filter example snippets




use NSRosenqvist\Phulp\UnderscoreFilter;
use NSRosenqvist\Phulp\Assetic;

$phulp->task('styles', function ($phulp) {
    $phulp->src(['assets/styles/'], '/scss$/')
        ->pipe(new UnderscoreFilter)
        ->pipe(new Assetic([
            new \Assetic\Filter\ScssphpFilter,
            new \Assetic\Filter\CssMinFilter,
        ], 'theme.css'))
        ->pipe($phulp->dest('dist/styles/'));
});