patricknazar
patricknazar
I just noticed this, I believe the `bin/deploy ` script is designed to create and upload the stuff to a bucket. You'll have to set the `TemplateBucket` parameter to that...
Guys I'd say this repo is abandoned, sadly. I've been following this for a while and there is just no progress. #314
Got rid of the annoying logs in tests with `Modal.setAppElement(document.querySelector('body')!)`
I managed to use `@Transform()` to do it. It calls a recursive function imported from another file which in turn imports the classes and uses a `switch()` to check. I...
@hedegitsinue ``` import { Transform, TransformationType, classToPlain, plainToClass, classToClass } from 'class-transformer'; function transformFn(value: User, obj, type) { if (type === TransformationType.PLAIN_TO_CLASS) { return User.fromObject(value); } else if (type ===...
No worries @hedegitsinue hope it helps!
@hedegitsinue that's cool! However, apparently it is not working when using the `discriminator` option in `@Type`. I have multiple sub types and they all get resolved as `undefined` :/
I had the same problem and also couldn't build, and they were both related an auth issue. [see my comment here](https://github.com/docker/compose/issues/4396#issuecomment-664285144) If you run `docker-compose --verbose pull/build xyz` and it...
I just fixed this issue by upgrading *the version of @serverless-stack/node in my services directory*! `npm i @serverless-stack/node` under services, for that particular `package.json`. As per [the resource binding docs](https://docs.sst.dev/resource-binding#quick-start)...
> I installed `@serverless-stack/[email protected]` in my services dir but I still don't see types appear, using pnpm Have you tried restarting `sst start`? Have you also updated sst from the...