Marco Lüthy
Marco Lüthy
Hi @mandeepm91 — Hm.. Sharp does have some parameters for controlling the [quality](http://sharp.readthedocs.io/en/stable/api-output/#jpeg) of the output image, and also by default [omits metadata](http://sharp.readthedocs.io/en/stable/api-output/#withmetadata) (e.g. EXIF data) when writing a new...
@mandeepm91 Yes I'd welcome a PR. I haven't thought too much about how it would be best to implement the imagemin support. Perhaps extending the "outputs" support currently used for...
@superandrew213 Thank you. Yes! What would you like to see? (or rather, what would you like to see first?) I have some basic Rekognition stuff ready, including integration into DynamoDB—but...
@bluepeter yea; I think so to, for the most part. Definitely would follow the whole "microservices" architecture better. My main thought about why you might want it in the same...
Hi @Jaikant — The `master` branch is currently broken. Try the `v0.11.0` tag, or grab the source from the [v0.11.0 release](https://github.com/adieuadieu/retinal/releases/tag/v0.11.0) instead. 😊
@love8587 — yes 0.11.0 should work fine. What issue are you having/what error are you seeing?
Here's an incomplete head start: ```typescript declare module 'mongorito' { export const DBRef export const ObjectId export const Database export class Model { constructor(initialData: { [key: string]: any }) public...
Hi @sampsasaarela — the version on npm is not the latest that's in the master branch and is missing some features/changes which haven't been. Only reason is that I haven't...
Another solution (if using webpack), is to add `new webpack.IgnorePlugin(/^pg-native$/)` to your webpack config's plugins array. E.g. ``` const webpackConfig = { ... resolve: { ... }, plugins: [ new...
I'm not sure if this is directly relevant to the issue/goals from OP, but in case anyone lands here and is are having issues using a custom authorizer with an...