exozet/grunt-bundle

Run npm, bower and grunt on cache warmup in symfony2.

Installs: 240

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 29

Forks: 0

Open Issues: 0

Type:symfony-bundle

0.2.3 2014-11-07 17:10 UTC

This package is auto-updated.

Last update: 2024-04-18 07:58:44 UTC


README

SensioLabsInsight

Build Status Code Climate Test Coverage StyleCI

This small bundle is meant to run the following steps, if the cache is cleaned and warmed up (optional):

  • npm install
  • bower install
  • grunt dev

Usage

Add $bundles[] = new Exozet\GruntBundle\ExozetGruntBundle() to your AppKernel.php (in the dev-if-block).

If you have a package.json, bower.json and Gruntfile.js in your project, add the bundle to your project.

As soon a you call

$ app/console c:c

and the steps by grunt will be executed.

Configuration

# Default configuration for extension with alias: "exozet_grunt"
exozet_grunt:

    # The environments where the bundle should be executed
    environments:         # Required

        # Default:
        - dev

    # Use binaries with the following environment vars (key/value pairs)
    binary_env_vars:      # Example: LANG:    en_US.UTF-8 for LANG="en_US.UTF-8"

        LANG:                 en_US.UTF-8

    # The binary path where npm is located
    npm_binary_path:      npm # Example: /usr/bin/npm

    # The binary path where bower is located
    bower_binary_path:    bower # Example: /usr/bin/bower

    # The binary path where grunt is located
    grunt_binary_path:    grunt # Example: /usr/bin/grunt

    # The grunt task which should be executed
    grunt_task:           dev # Example: dev

This default configuration will run the dev task ONLY in dev environment. The LANG environment variable is e.g. required for compass.

License

Copyright 2014 by Exozet and licensed under MIT License.