Anton Medvedev 4bdf95ebda Update docs
2022-09-12 12:29:44 +02:00

874 B

Npm Recipe

require 'contrib/npm.php';

Source

Configuration

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

Usage

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

Configuration

bin/npm

Source

Tasks

npm:install

Source

Installs npm packages.

Uses npm ci command. This command is similar to npm install, except it's meant to be used in automated environments such as test platforms, continuous integration, and deployment -- or any situation where you want to make sure you're doing a clean install of your dependencies.