spinlud
spinlud
Could I ask why the syntax `!Ref resourceName` does not work here, instead I have to use `#{resourceName}` syntax to reference a Cloudformation resource defined in the template? ```yml stepFunctions:...
## 🐛 Bug Report When taking a screenshot of the webpage using `Firefox/Geckodriver` (headless) the resulting image file has different dimensions from the webpage. ## To Reproduce ```python from selenium.webdriver...
Is possible to have an option to add blank line rule(s) in the formatter? Eg transform this ```ts class Temp { @Dec1 prop1! int; @Dec2 prop2! string; } ``` to...
I need to define a `range` object which has two set of mutual exclusive properties `(gt, gte)` and `(lt, lte)` meaning that if there is `gt` property then `gte` must...
I am getting error when switching from `dependencies` to `dependentSchemas`: ```ts import Ajv from 'ajv'; const ajv = new Ajv(); export const schema = { type: 'object', properties: { foo:...
`node`: `v16.20.1` `serverless`: `^3.34.0` `serverless-offline`: `^12.0.4` `os`: `MacOS 13.5` I have the following simple npm script: ```json "serverless-offline": "serverless offline" ``` When running the above script in Webstorm in default...
Is it possible to disable this plugin when calling `serverless package` or `serverless deploy`? Tried with ```yml export-env: enableOffline: true getAttMap: MyEnvVar: 'foobar' ``` but it is still try to...
### Is there an existing issue for this? - [X] I have searched existing issues, it hasn't been reported yet ### Use case description Something like `docker-compose`: `serverless-compose.yml` ```yml services:...
### Version 18.18.0 ### Platform Darwin arm64 ### Subsystem node:internal/streams ### What steps will reproduce the bug? I have a call to a database which returns a stream. When consuming...
I would like to build a single zip file incrementally. What I have tried: ```ts import {PassThrough} from 'stream'; import archiver from 'archiver'; (async () => { const stream =...