Yoshi Walsh
Yoshi Walsh
Using reflec-ts 0.3.9 with Node 8.6.0. I have the following basic project structure: **src/tests.js** ```ts class testClassA { a: string } console.log(new testClassA()); ``` **tsconfig.json** ```json { "compileOnSave": true, "include":...
Add option for plugin to automatically create a CloudFront invalidation once deployment is complete
This was discussed briefly in #47. Currently in [our "with CloudFront" recipe](https://github.com/jariz/gatsby-plugin-s3/blob/master/recipes/with-cloudfront.md#optional-override-caching-settings-for-cloudfront--automate-cloudfront-invalidations) and in [my blog post](https://blog.joshwalsh.me/aws-gatsby/) we recommend invalidating the CloudFront cache after the deployment. The mechanism suggested for...
While working on #64, @gburgett discovered a possible bug with the way that we generate RoutingRules. The issue affects handling of paths containing symbols. For reference, here is an example...
According to the documentation for [createRedirect](https://www.gatsbyjs.org/docs/actions/#createRedirect), some plugins support the non-standard redirect parameters `force` and `statusCode`. It might be nice for us to support these too. With Redirection Rules, we...
As mentioned previously, AWS now recommend avoiding the use of object ACLs. They have also introduced new features which by default prevent public ACLs from being applied to objects within...
I know it's currently possible to load config values from environment variables like so: ```javascript // gatsby-config.js plugins: [ { resolve: `gatsby-plugin-s3`, options: { bucketName: process.env.S3_BUCKET_NAME } } ] ```...
This is something we've already been discussing in a few different places. (#45, #46) I am making this thread to allow us a more organised place to talk about it....
Make complete callback fire whether or not a scrollable ancestor could be found. Fixes #17
1. Operating system Windows 10 2. The way you installed OpenCV: package, official binary distribution, manual compilation, etc. ```powershell choco install llvm opencv ``` Then manually set ```text OPENCV_DIR=C:\tools\opencv\build\x64\vc14\lib OPENCV_INCLUDE_PATHS=C:\tools\opencv\build\include...
If I use a non-TypeScript template, AWS Toolkit is able to build and run my app. If I use a TypeScript template, I can build it successfully using `sam build`...