Dominik Kundel

Results 62 issues of Dominik Kundel

GitHub Actions require all external dependencies to be bundled up. Right now we are using [`@zeit/ncc`](https://npm.im/@zeit/ncc) for that but we haven't minified the code yet.

enhancement
blocked

Hi everyone! I think there is a problem with how TypeScript is being compiled. Effectively definitions aren't properly pulled in. Typically you would use in a TypeScript project a `tsconfig.json`...

Hi everyone, I think it would be nice if `npm init` would fetch for the author the information from the git config if it's provided. I could see two potential...

> __Note:__ This issue is a proposal and is subject to change and open for feedback. At the end of April we [launched the v2 REST API](https://www.twilio.com/blog/automate-flow-deployments-studio-rest-api-v2-beta) for [Twilio Studio](https://www.twilio.com/studio)....

enhancement
v-next
breaking-change

Broken: ```js exports.handler = async (context, event, callback) => { const response = new Twilio.Response(); response.appendHeader('Content-Type', 'application/json; charset=UTF-8'); response.setStatusCode(400); response.setBody( {message: 'I am a JSON message'} ) return callback(null, response);...

This feature allows templates to have postinstall hooks that can run account setup for users. It's a sandboxed script that will allow scripts to access Twilio but not other parts...

I was trying to see how [this guide](https://www.twilio.com/docs/openapi/mock-api-generation-with-twilio-openapi-spec) would fit together with the Serverless Toolkit and realized while it works there is some hackery around it. Essentially the only way...

## Actual Behavior If you deploy a project with `-l debug` that contains any of these keywords here as names of environment variables https://github.com/twilio-labs/serverless-toolkit/blob/250165bbf672a43cc9d17ce34ba860f98e37f326/packages/twilio-run/src/utils/debug.ts#L20-L28 The environments variables will be uploaded...

bug
good first issue

## Background Functions have a couple of oddities that can cause frustation for users. It would be useful if we can ship the Serverless Toolkit with a linter that helps...

It seems like `chalk` turns `supportsColors` to `false` in forked processes for some reason. We can turn that back on by adding `FORCE_COLORS` as `1`. There's an example in this...