can-compile.js 208 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 'use strict'; const libvips = require('../lib/libvips'); try { if (!(libvips.useGlobalLibvips() || libvips.hasVendoredLibvips())) { process.exitCode = 1; } } catch (err) { process.exitCode = 1; }