Ray East

Results 8 comments of Ray East

You could check out https://github.com/raycharius/clean-redirect Does enforce HTTPS and other redirects (like www naked) in one redirect, and is currently maintained

Thanks for pushing this change! This is definitely something that I want to get to, but it will require some R&D to see how feasible it is going to be...

@zaini – nice! If you'd be up for collaborating on getting this production ready, would love to chat about how we can get this up and running! Are you a...

Thanks for the response @chentsulin! Sure, happy to put up a couple of examples! Just send over a PR? Any preferences on how and where to add?

I've been playing around with this a bit, and you are totally right. For some reason, I always though of enums as a subset of union types, but it will...

What are thoughts on the discriminating union types for more strict type checking? Advantages: - A much better and more type-safe experience with the package and SDK, such as with...

Cheers! So, as one example, I've created my own enums for things like [button styles](https://github.com/raycharius/slack-block-builder/blob/initial-release-v2/src/constants/button-styles.ts), [filters](https://github.com/raycharius/slack-block-builder/blob/initial-release-v2/src/constants/filters.ts), etc. By putting those in their own enums in @slack/types, those could just be...

Hi! I've created a draft pull request demonstrating improvements to @slack/types. - Moving all string values to exported enums. By doing so, these enums can be imported and used as...