James Allardice

Results 8 issues of James Allardice

When the polyfill runs in "hide-on-input" mode (rather than "hide-on-focus") there is a flash of placeholder-styled text when you type the first character into the input. This is more of...

future-enhancement

When intercepting a request and serving a file from the local filesystem as a response, spaces in the path to that file cause problems. This can be worked around quite...

Lambda architecture can either be `x86_64` (default) or `arm64`. The Arm architecture [can be more cost effective](https://aws.amazon.com/blogs/aws/aws-lambda-functions-powered-by-aws-graviton2-processor-run-your-functions-on-arm-and-get-up-to-34-better-price-performance/). We should investigate this and determine whether it makes sense to switch to...

question

Currently Webpack fails to compile the code if you use e.g. a static class property (which is an ECMAScript feature supported natively by Node 14). The @babel/preset-env transform also supports...

Currently, Dependabot opens PRs, we ignore them and then do periodic sweeping dependency upgrades which covers all (or most) of Dependabot's suggestions and the PRs get automatically closed. If we...

enhancement

The Serverless Framework has native support for CloudFormation stack policies which allow you to prevent the accidental removal or replacement of stack resources. We should consider adding a default policy...

enhancement

I recently got this working with webpack-bundle-analyzer for [a demo](https://github.com/orangejellyfish/serverless-starter-demo). Unsure if it's worth including the plugin by default because for Lambda functions it doesn't add as much benefit as...

enhancement

The AWS JS SDK supports [TCP connection reuse](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/node-reusing-connections.html) via the `AWS_NODEJS_CONNECTION_REUSE_ENABLED` environment variable. We could include this env var in the example Lambda function, or at [the provider level](https://serverless.com/framework/docs/providers/aws/guide/functions#environment-variables) so...

enhancement