Chris

Results 48 comments of Chris

> Is there any chance to have a repo with minimal information to reproduce the issue? I created a small repo to reproduce it: https://github.com/chriszirkel/serverless-webpack-layers If you `npx sls package`...

@j0k3r I would like to volunteer for this issue if you could give me a hint where the layer packaging happens?

> I've switched to https://github.com/AnomalyInnovations/serverless-bundle and it makes my life easier. Are you using Yarn 2 with workspaces?

I submitted PR https://github.com/serverless-operations/serverless-step-functions/pull/585 Would be nice to double check with you guys if it works for you. You can install the branch directly with NPM, Yarn, or PNPM and...

We created type definitions for this package: https://www.npmjs.com/package/@types/serverless-step-functions You can use them like this in your `serverless.ts` config: ```ts import type { AWS as Serverless } from '@serverless/typescript'; import type...

It is currently not possible to use a serverless typescript config (`serverless.ts/mts`) in a ESM project, because serverless uses `require()` to read the config and that will throw an error...

@throrin19 @mkvlrn here's a working example for Serverless + ESM + TypeScript: https://github.com/zirkelc/serverless-esm-ts It's a workaround, but _it works!_

The package https://github.com/fgnass/domino that causes this error seems to be no longer maintained, so there is no hope that it will be fixed. If a DOM is needed from this...

Yes I agree. I think a convention would make sense here that if a layer points to a folder, then every file should be treated as entry point. If the...

I currently use layers to share common code and dependencies between multiple services. Also my serverless service only contains layers and doesn't contain any functions, so I don't have the...