Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 382 Bytes

npm.md

File metadata and controls

29 lines (18 loc) · 382 Bytes

NPM recipe

Installing

Install with composer

composer require deployer/recipes --dev

Add to your deploy.php

require 'recipe/npm.php';

Configuration

  • bin/npm (optional): set npm binary, automatically detected otherwise.

Tasks

  • npm:install – install npm packages

Usage

after('deploy:update_code', 'npm:install');