jandc/grumphp-yarn-task

Simple grumphp task akin to the 'npm_script' task, but runs yarn instead.

0.5.0-beta 2021-08-19 08:54 UTC

This package is auto-updated.

Last update: 2024-04-19 15:08:26 UTC


README

Simple grumphp task akin to the 'npm_script' task, but runs yarn instead

Usage

Dependencies

yarn (obviously), has to be installed and available in $PATH.
Refer to https://yarnpkg.com/en/docs/install for the installation procedures.

Installation

To install the yarn task simply run
composer require jandc/grumphp-yarn-task
or
composer global require jandc/grumphp-yarn-task

depending on your grumphp location

You can register the task by adding it's extension:

# grumphp.yml
parameters:
    extensions:
        - YarnTask\Extension\Loader

Configuration

Usage is almost identical to npm_script:
(https://github.com/phpro/grumphp/blob/v0.15.0/doc/tasks/npm_script.md)

# grumphp.yml
parameters:
    tasks:
        yarn:
            script: lint
            options:
                - '--no-fix'
                - '--max-warnings=0'
            triggered_by: [js, jsx, coffee, ts, less, sass, scss]
            working_directory: ./
            is_run_task: false

Note the extra 'options' array which can be used to append extra parameters to your scripts