HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-172-31-4-197 6.8.0-1036-aws #38~22.04.1-Ubuntu SMP Fri Aug 22 15:44:33 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/bots/bot-pqr/node_modules/sharp/install/check.js
// Copyright 2013 Lovell Fuller and others.
// SPDX-License-Identifier: Apache-2.0

'use strict';

try {
  const { useGlobalLibvips, globalLibvipsVersion, log, spawnRebuild } = require('../lib/libvips');

  const buildFromSource = (msg) => {
    log(msg);
    log('Attempting to build from source via node-gyp');
    try {
      require('node-addon-api');
      log('Found node-addon-api');
    } catch (err) {
      log('Please add node-addon-api to your dependencies');
      return;
    }
    try {
      const gyp = require('node-gyp');
      log(`Found node-gyp version ${gyp().version}`);
    } catch (err) {
      log('Please add node-gyp to your dependencies');
      return;
    }
    log('See https://sharp.pixelplumbing.com/install#building-from-source');
    const status = spawnRebuild();
    if (status !== 0) {
      process.exit(status);
    }
  };

  if (useGlobalLibvips()) {
    buildFromSource(`Detected globally-installed libvips v${globalLibvipsVersion()}`);
  } else if (process.env.npm_config_build_from_source) {
    buildFromSource('Detected --build-from-source flag');
  }
} catch (err) {
  const summary = err.message.split(/\n/).slice(0, 1);
  console.log(`sharp: skipping install check: ${summary}`);
}