Phil Nash

Results 185 comments of Phil Nash

## Upload multiple assets It might be useful to be able to upload and deploy multiple assets at the same time. If a `--protected` flag is added, as above, it...

This looks good to me. Some comments: Flows would be save as a JSON file rather than a JS file (see under File Structure). Will we ever have something that...

@tk63135 I'm afraid this is not currently on our priority list for work on the serverless toolkit, so currently I wouldn't hold your breath. We likely do need to take...

Huh, this is a little weird. From a very quick investigation, it seems that the option name duplication comes from the Twilio CLI rather than `twilio-run` (which is where the...

I think that's not showing because we've been working towards a new major version which hasn't been released yet. The serverless plugin is actually made up of a few other...

The commands for `twilio-run` are created by the [`yargs`](https://github.com/yargs/yargs) project, but when they are used by the Twilio CLI as a plugin, they are created by [`oclif`](https://github.com/oclif/oclif). The differences you...

Hi @afiakyalo, I'm afraid this security exception is not something we can update for now, for [the reasons explained in #397](https://github.com/twilio-labs/serverless-toolkit/pull/397). However, in your application you can overcome the issue...

Alternatively, we could try passing the original `stdin`, `stdout` and `stderr` from the parent process. It looks like you can do that with the [`stdio` option for `fork`](https://nodejs.org/api/child_process.html#child_process_options_stdio). ```typescript const...

Nope, that does not work. `FORCE_COLORS` seems to be the way.

In TypeScript we consume modules using `import` however with our current settings that is transpiled to a `require` which fails to load pure ESM packages.