Son CV dans un terminal web en Javascript! https://terminal-cv.gregandev.fr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
524 B

"use strict";
const SHARP_RANGE = '^0.29.1'; // This is used to load sharp on the main thread, which prevents errors when worker threads exit
// See https://sharp.pixelplumbing.com/install#worker-threads and https://github.com/lovell/sharp/issues/2263
module.exports = async (packageManager, filePath, shouldAutoInstall, shouldReturn) => {
let sharp = await packageManager.require('sharp', filePath, {
range: SHARP_RANGE,
shouldAutoInstall: shouldAutoInstall
});
if (shouldReturn) {
return sharp;
}
};