riddlestone / brokkr-gulpfile
A tool to create gulpfiles based on Laminas module configuration
Requires
- php: ^7.1
- ext-json: *
- laminas/laminas-component-installer: ^2.0 || ^1.0 || ^0.7
- laminas/laminas-servicemanager: ^3.4
- riddlestone/brokkr-console: ^1.0.1
- riddlestone/brokkr-portals: ^2.0 || ^3.0
Requires (Dev)
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2025-03-29 00:50:44 UTC
README
A Laminas module for creating Gulp config files
Installation
Installation of this module uses composer. For composer documentation, please refer to getcomposer.org.
composer require riddlestone/brokkr-gulpfile
Usage
To include your js/sass files in the gulpfile, add them in portals to your module or site's config file:
<?php return [ 'portals' => [ 'main' => [ 'css' => [ realpath(__DIR__ . '/../resources/css/**/*.scss'), ], 'js' => [ realpath(__DIR__ . '/../resources/js/**/*.js'), ], ], ], ];
Note: Any other methods which brokkr-portals uses to provide portal information can also be used to get information to brokkr-gulpfile.
A gulpfile can now be created using the brokkr command gulpfile
:
vendor/bin/brokkr gulpfile
Setting SASS options
To set SASS options, include them in the sass_options
settings for your portal:
<?php return [ 'portals' => [ 'main' => [ 'css' => [ realpath(__DIR__ . '/../resources/css/**/*.scss'), ], 'sass_options' => [ 'includePaths' => [ 'vendor/someones/awesome-css-stuff/scss', ], ], ], ], ];
Changing the template
To change the template for your gulpfile, just copy view/gulpfile.js.php somewhere, change it, and add the new path to your module/site's config:
<?php return [ 'gulp' => [ 'template' => realpath(__DIR__ . '/../view/gulpfile.js.php'), ], ];
Changing the target path
To change the path of the final gulpfile, just add the following to your site/module's config:
<?php return [ 'gulp' => [ 'target' => 'gulpfile2.js', ], ];
Get Involved
File issues at https://github.com/riddlestone/brokkr-gulpfile/issues