mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 23:15:25 +00:00
larry babby and threejs for glsl
This commit is contained in:
15
webGl/my-threejs-test/node_modules/@parcel/transformer-image/lib/loadSharp.js
generated
vendored
Normal file
15
webGl/my-threejs-test/node_modules/@parcel/transformer-image/lib/loadSharp.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
"use strict";
|
||||
|
||||
const SHARP_RANGE = '^0.31.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;
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user