Dominik Kundel
Dominik Kundel
It would be nice to have a helper function that can take a deployed Twilio Function URL and return the `serviceSid`, `environmentSid`, `buildSid` and any other meta information that might...
The PR twilio-labs/serverless-api#31 added verification for paths to the tooling. Right now we handle some special characters but it's still unclear what the right path for emojis are. We checked...
I think it would be nice to setup some E2E test to verify that everything works as part of the PR automation. What I have in mind right now is...
Inside deployed Twilio Functions there's only one way to properly require other JavaScript files inside your project: ```js const mod = require(Runtime.getAssets()['/some/lib'].path) ``` This is necessary that Functions renames files...
While developing new function template I found an obscure bug. This code works: ```js exports.handler = function(context, event, callback) { let twiml = new Twilio.twiml.MessagingResponse(); twiml.message('Hello World'); callback(null, twiml); };...
During a stream we found [Nixt](https://github.com/vesln/nixt). It might be a good tool to implement some E2E tests for the various commands. We should probably have them in a dedicated folder...
Right now whenever you run deploy we'll create a new version of every single file in your project. This was initially necessary since there was no way for us to...
Hi there, If you run `oclif-dev readme` it currently generates a bunch of `h2` tags for the commands using `##` but if you put it in a context of a...
## Description ## Checklist - [ ] I ran `npm test` locally and it passed without errors. - [ ] I acknowledge that all my contributions will be made under...