Adam Bar
Adam Bar
The NFC example was updated since then due to spec changes. Could you confirm the issue is still there @bkpritesh ?
@bkpritesh Chrome Canary (91.0.4439.0) on Android 9. Is your tag working fine when testing with other demos/readers?
Definitely, it would make sense. It seems that SAM is a bit different in terms of root level structure and apart of that is a superset of CloudFormation resources. Do...
Yes, I've been thinking about a solution for this and although I haven't published anything yet, I have some ideas. I need to weight whether the API complexity added is...
Yes, although requiring the API user to always specify that `MyResources` generic parameter would kill the usefulness for me. ```typescript cloudform({ Resources: { x: { Ref: Fn.Ref('x') } } })...
Thanks @RafalBDS. I'm not sure I should do anything about it in the way cloudform currently operates. Note that outputting the template via the stdout stream is the core API...
Also, I'm not sure what do you mean about this part of the issue: > It is usefull to import some types/interfaces from modules - this issue disallows such option...
All I said is that cloudform CLI does not create a template file for you. It outputs it to stdout and it's your code that writes it to the file,...
OK, but on the other hand, if you explicitly do `console.log`, isn't it the idea to have it on stdout? I find suppressing stdout potentially much more surprising than the...
It's still the same type of confusion. Why stderr when you wrote to stdout? I suggested Rafał to use `console.warn` or its friends as it outputs to stderr stream instead....