taskNpmUpdate()->run(); * * // prefer dist with custom path * $this->taskNpmUpdate('path/to/my/npm') * ->noDev() * ->run(); * ?> * ``` */ class Update extends Base { /** * @var string */ protected $action = 'update'; /** * {@inheritdoc} */ public function run() { $this->printTaskInfo('Update Npm packages: {arguments}', ['arguments' => $this->arguments]); return $this->executeCommand($this->getCommand()); } }