docts
docts copied to clipboard
A CLI library which enhances the development experience of DigitalOcean 'doctl serverless' when working with Typescript function projects
The following type does not seem to be up to date according to type DigitalOcean [documentation](https://docs.digitalocean.com/products/functions/reference/parameters-responses/#parsed-web-events). ```typescript interface DoFunctionArgs { __ow_headers?: Record __ow_path?: string __ow_method?: 'get' | 'post' | 'put'...
This package is awesome. I ran into a few typescript warnings when running `docts build`. ``` > docts-template@1 build > docts build (typescript plugin) src/foo/bar/index.ts (4:20) @rollup/plugin-typescript TS2552: Cannot find...
Ran: ``` docts init my-serverless-project ``` Got this error: ``` node:internal/process/esm_loader:97 internalBinding('errors').triggerUncaughtException( ^ Error [ERR_MODULE_NOT_FOUND]: Cannot find package 'typescript' imported from /Users//.volta/tools/image/packages/docts-cli/lib/node_modules/@rollup/plugin-typescript/dist/es/index.js Did you mean to import typescript/lib/node_modules/typescript/lib/typescript.js? at new...
Hi, first of all, thanks a lot for your work. This helped me out a lot. I'm using `dotenv` in my functions but it's not included in the built package.json,...