48ea61cdcc
- Product documentation in docs/products/ - Updated MEMORY.md with product info - quiXzoom Auth Core as AAMOS Identity product
39 lines
860 B
JavaScript
39 lines
860 B
JavaScript
/*!
|
|
Copyright 2013 Lovell Fuller and others.
|
|
SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
const {
|
|
useGlobalLibvips,
|
|
globalLibvipsVersion,
|
|
log,
|
|
spawnRebuild,
|
|
} = require('../dist/libvips.cjs');
|
|
|
|
log('Building from source');
|
|
log('See https://sharp.pixelplumbing.com/install#building-from-source');
|
|
|
|
try {
|
|
const addonApi = require('node-addon-api');
|
|
log(`Found node-addon-api ${addonApi.version || ''}`);
|
|
} catch (_err) {
|
|
log('Please add node-addon-api to your dependencies');
|
|
process.exit(1);
|
|
}
|
|
try {
|
|
const gyp = require('node-gyp');
|
|
log(`Found node-gyp ${gyp().version}`);
|
|
} catch (_err) {
|
|
log('Please add node-gyp to your dependencies');
|
|
process.exit(1);
|
|
}
|
|
|
|
if (useGlobalLibvips(log)) {
|
|
log(`Found globally-installed libvips v${globalLibvipsVersion()}`);
|
|
}
|
|
|
|
const status = spawnRebuild();
|
|
if (status !== 0) {
|
|
process.exit(status);
|
|
}
|