mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 09:53:32 +03:00
d9dfdd775e
- moved image.manipulation lib to a new package called @tryghost/image-transform - new package has an updated API signature, so the method calls have changed but the underlying code is identical - removed the optional sharp dependency from Ghost, as this is now optionally required by the image-transform module
18 lines
316 B
JavaScript
18 lines
316 B
JavaScript
module.exports = {
|
|
get blogIcon() {
|
|
return require('./blog-icon');
|
|
},
|
|
|
|
get imageSize() {
|
|
return require('./image-size');
|
|
},
|
|
|
|
get gravatar() {
|
|
return require('./gravatar');
|
|
},
|
|
|
|
get imageSizeCache() {
|
|
return require('./cached-image-size-from-url');
|
|
}
|
|
};
|