Lukas Siemon
Lukas Siemon
Improved to allow for in-line comments as: ``` target: [ '**' ].concat(grunt.file.read(".eslintignore").split("\n") .map(e => e.split("#", 1)[0].trim()).filter(e => e !== "") .map(e => `!${e}`)) ```
Ah, that was good input. I'll test out some stuff and circle back here! This seems like a promise reference for keys: http://stackoverflow.com/questions/6605399/how-can-i-set-an-action-to-occur-on-a-key-release-in-xmonad
What's the hold up?
@cdhowie maybe it's time to fork and publish under a different package name?
Having said that... I'm in the process of writing my own orm. So I'm don't really care about this project much anymore (sorry).
Gist here is that it would be nice to have different log level. This might or might not have an impact on performance.
@pgrzesik Absolutely! ``` Error: UPDATE_FAILED: ApiRouterProvConcLambdaAlias (AWS::Lambda::Alias) No Provisioned Concurrency Config found for this function ( Service: AWSLambdaInternal; Status Code: 404; Error Code: ProvisionedConcurrencyConfigNotFoundException; Request ID: ********-****-****-****-************; Proxy: null )...
@pgrzesik Here is an idea: What would it take to still create the alias and associated it everywhere, but not allocate any provisioned concurrency config when `provisionedConcurrency: 0` is set?...
For our use case [serverless-plugin-canary-deployments](https://github.com/davidgf/serverless-plugin-canary-deployments) might be what we need. In particular this [comment](https://github.com/serverless-heaven/serverless-aws-alias/issues/200#issuecomment-857400442) outlines how we can use it to have an alias without provisioning.
@pgrzesik We couldn't get the plugin to work for our use case, so we are still stuck with the initial hack. Unfortunately that hack also fails about 20% of the...