serverless-plugin-ifelse
serverless-plugin-ifelse copied to clipboard
A Serverless Plugin to write If Else conditions in serverless YAML file
Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...
I'm combining the use of this plugin with `serverless-dotenv-plugin`. `ifelse` is declared AFTER `dotenv`: ```yaml plugins: - serverless-webpack - serverless-dotenv-plugin - serverless-plugin-ifelse ``` Then I have the following: ```yaml chainId:...
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. Release notes Sourced from decode-uri-component's releases. v0.2.2 Prevent overwriting previously decoded tokens 980e0bf https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2 v0.2.1 Switch to GitHub workflows 76abc93 Fix issue where decode...
Been experimenting, and it looks like this most useful plugin can target a section of serverless.yml like a provider, but cannot set the value of a custom variable, e.g. ```...
Hi, Thank you for this amazing library. It has truly made my life much simpler. Currently, if I exclude an array element, it is replaced with null. For a certain...
For example, for a serverless.yml similar to this: ```yaml service: "test" provider: stage: "${opt:stage}" name: "aws" functions: foo: handler: "handler.foo" events: - sns: "bar" plugins: - "serverless-plugin-ifelse" custom: serverlessIfElse: -...
Bumps [jsdom](https://github.com/jsdom/jsdom) from 16.4.0 to 16.7.0. Release notes Sourced from jsdom's releases. Version 16.7.0 Added AbortSignal.abort(). (ninevra) Added dummy x and y properties to the return value of getBoundingClientRect(). (eiko)...
update the spelling of attributes in the documentation
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
I have a use-case to remove a plugin based on stage level. For example, I don't want to bundle when in "local" stage: ```yaml plugins: - serverless-plugin-ifelse - serverless-bundle -...